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 = 48170
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);
([4899987.5, 4941580.194516583, 4982489.0625, 5020663.505493257, 5184245.350154011, 5258337.5, 5300076.23719531, 5302525.437571102, 5324429.837295322, 5327633.749371914, 5353871.436418052, 5437390.661764834, 5482962.15779316, 5483903.588461, 5491701.655678191, 5516691.935619735, 5519142.815398443, 5589923.561539311, 5663376.5625, 5666785.879593046, 5884432.8125, 5887391.756152467, 5907781.097227797, 5982743.75, 6149138.183517179, 6221281.113284561, 6261854.265724376, 6268131.413713678, 6509954.5612839665, 6510033.068153313, 6567940.706014945, 6570577.648586388, 6675428.703033419, 6835331.756824669, 6838392.185599235, 7075218.75, 7076788.350294904, 7077477.485937313, 7080879.729776676, 7176585.0237887055, 7187601.590558278, 7279158.584316178, 7295485.534685664, 7338103.579316679, 7417101.791596809, 7573344.439249368, 7598300.075092136, 7606021.875, 7668232.324572981, 7760031.342725994, 7860707.845350447, 7860728.125, 7916104.745104837, 8035371.598006242, 8049064.822185618, 8124830.026891274, 8172249.61305816, 8198554.6875, 8203522.535669264, 8204576.111000275, 8216235.9375, 8221160.212940189, 8221884.240560144, 8254849.110511292, 8272830.486554601, 8273485.699668996, 8297176.265205492, 8303292.1875, 8308040.625, 8313070.519689135, 8343355.309308114, 8343379.6875, 8349229.930076466, 8349980.94546837, 8370191.863184395, 8378826.5625, 8428694.438071113, 8433410.241622891, 8439988.906429563, 8441157.118211545, 8442559.375, 8442921.252756556, 8444243.922880722, 8445062.162008248, 8445087.15376948, 8445942.1875, 8447704.6875, 8449180.189617485, 8451189.0625, 8451362.448200818, 8498669.630428338, 8498683.339816835, 8512570.23431156, 8513394.316494707, 8515776.5625, 8516006.25, 8516293.545031516, 8516403.363778396, 8516972.902791185, 8517061.651285246, 8517238.87419229, 8517255.846023304, 8517439.187119568, 8517875.258682285, 8517947.89166008, 8517959.230975173, 8518202.383551424, 8518281.251567516, 8518443.75, 8518629.499256952, 8518678.746447628, 8518682.675445369, 8518795.070874294, 8518812.227480048, 8518876.5625, 8518886.78001891, 8518903.842563074, 8518926.631978089, 8518982.008355277, 8519031.638820363, 8519165.731967852, 8519252.820952065, 8519329.6875, 8519345.3125, 8519391.86723224, 8519394.34484825, 8519436.54811525, 8519479.394500738, 8519504.6875, 8519523.4375, 8519530.575401258, 8519671.64151696, 8519726.953872249, 8519807.784288453, 8519819.803919416, 8519925.0, 8519965.20689966, 8520025.72189485, 8520029.6875, 8520087.5, 8520090.544771075, 8520109.375, 8520110.599979002, 8520128.66817883, 8520134.996028474, 8520169.190079384, 8520185.754478997, 8520226.885919373, 8520246.603158142, 8520264.0625, 8520271.585180746, 8520297.908402087, 8520330.585764175, 8520345.09792382, 8520345.3125, 8520361.595152797, 8520377.827240836, 8520380.063026825, 8520502.598306112, 8520556.818980735, 8520612.444502026, 8520626.375547595, 8520643.804668454, 8520649.010678438, 8520741.570644388, 8520773.311298506, 8520782.280137312, 8520802.566218214, 8520874.042168355, 8520883.557577314, 8520910.319037316, 8520921.875, 8520950.354635553, 8520957.702358631, 8520971.3561004, 8520971.76387747, 8521054.913247889, 8521063.933014505, 8521065.440457782, 8521137.039284367, 8521238.297965348, 8521302.813638823, 8521443.834615821, 8521501.81937769, 8521507.053209733, 8521541.279373936, 8521616.970754467, 8521751.047895914, 8521854.073551988, 8522096.485621752, 8522279.383410262, 8522320.3125, 8522332.732072378, 8522374.347344564, 8522459.375, 8522514.0625, 8522667.1875, 8522669.760742618, 8522789.7374571, 8522875.75897874, 8522884.145097792, 8523026.170223821, 8523243.096866265, 8523316.59091202, 8523335.210395522, 8523370.346826099, 8523410.9375, 8523711.759631865, 8523844.336560091, 8523873.96997637, 8523883.647923775, 8523937.592753971, 8523970.037306773, 8524017.1875, 8524089.0625, 8524160.328744456, 8524243.607130993, 8524258.612403981, 8524317.514021719, 8524378.007993659, 8524507.8125, 8524629.388920076, 8524722.893560022, 8525017.1875, 8525242.218224393, 8525431.027410308, 8525537.627301276, 8525574.33223432, 8525664.819273233, 8525672.854065524, 8525709.09022414, 8525729.624855675, 8525745.41066193, 8525898.850219417, 8525939.506602453, 8525951.44545792, 8526020.3125, 8526045.3125, 8526055.824732184, 8526057.64875986, 8526076.5625, 8526108.924353974, 8526118.040591607, 8526138.9146566, 8526154.523792105, 8526196.875, 8526391.533656815, 8526470.373441549, 8526736.612743849, 8526746.636619058, 8526893.647598814, 8527295.811610213, 8527625.414780054, 8527693.75, 8527840.414615804, 8527894.151781203, 8528304.386706619, 8528323.105308745, 8528324.041139454, 8528385.810610972, 8529480.53688198, 8530254.866702529, 8531152.360735618, 8531860.653359188, 8532040.149030395, 8532269.294116253, 8532334.420785924, 8532476.235217344, 8532571.951945843, 8532605.92677325, 8534066.234637504, 8535150.04118346, 8535524.249327911, 8535893.75, 8536152.89560788, 8536430.440153314, 8537779.289836342, 8538315.960077394, 8539031.707304692, 8543692.1875, 8544581.25, 8549220.035061875, 8552964.0625, 8564228.125, 8566404.483585255, 8566426.121309526, 8566531.311995698, 8566906.846189143, 8567001.830662038, 8567745.588874064, 8569038.992926065, 8569068.395057777, 8571230.39801391, 8571330.51498066, 8571912.790299721, 8571913.313815586, 8576312.534169707, 8577298.465573585, 8581670.897207195, 8582114.850389848, 8582231.051849764, 8592324.912042787, 8601812.98574291, 8635566.478091225, 8635654.694311747, 8694029.012156291, 8740391.78577016, 8743609.375, 8743615.823137138, 8769513.512454169, 8781994.260159126, 8785873.647085112, 8786486.498661678, 8786770.3125, 8790406.25, 8790575.0, 8792046.161433617, 8793606.25, 8807775.97056841, 8813717.1875, 8814063.89647032, 8841096.875, 8841904.074186137, 8846904.044243358, 8847360.9375, 8848770.3125, 8850126.217089986, 8851992.677825844, 8856002.45129735, 8856291.257737532, 8860511.981248256, 8867410.797078447, 8868657.8125, 8869923.405669563, 8873190.625, 8875712.5, 8889423.523022296, 8889800.648296235, 8892754.131879311, 8892792.996996416, 8894097.643665697, 8895593.786018696, 8895639.905076006, 8895647.302132418, 8896868.75, 8896912.405528612, 8898126.5625, 8898830.972593231, 8898848.577924212, 8898887.437063148, 8900782.507536387, 8903153.421795195, 8903927.028145337, 8905135.010921605, 8905268.029463202, 8905757.8125, 8907092.10894687, 8910359.226517683, 8910658.44867827, 8912835.874540584, 8918937.5, 8919662.5, 8920081.25, 8923339.0625, 8924676.5625, 8924790.398941573, 8929182.8125, 8936914.911304004, 8945892.561825406, 8947478.125, 8947505.318397624, 8947582.323229201, 8948625.85881164, 8948635.9375, 8950756.011225276, 8950825.897383772, 8951189.954725351, 8951800.0, 8951951.319282146, 8952706.061452169, 8953760.589645207, 8955115.625, 8955140.625, 8955444.325211482, 8955879.059914798, 8956033.711616924, 8956300.787845792, 8956453.408857195, 8956533.034530034, 8956645.564030394, 8956667.662978902, 8956901.406153157, 8957504.49434116, 8959442.65764265, 8960401.176752904, 8960481.25, 8960948.280816076, 8961138.686470047, 8961221.769586693, 8962828.52033194, 8963470.146557521, 8963883.502238806, 8963920.3125, 8963994.143853787, 8964685.150260579, 8965275.0, 8965617.1875, 8965720.282580093, 8966760.9375, 8966799.211113436, 8966841.897631677, 8967441.959304752, 8968074.452531926, 8968083.784737563, 8968218.550172806, 8968233.352598205, 8968425.530794995, 8968546.875, 8968702.989817936, 8968878.334046382, 8968953.125, 8970157.763233723, 8970194.312762592, 8970664.88422447, 8970873.377710922, 8971018.237906065, 8971104.036437891, 8971323.4375, 8971353.103067258, 8971395.490102282, 8971770.3125, 8971949.230583625, 8972278.125, 8972318.75, 8972341.51345643, 8973117.805685218, 8973449.25085199, 8973867.1875, 8974136.554746857, 8974698.356718175, 8974816.395293664, 8975281.143292606, 8975384.7646566, 8975529.706405325, 8975702.58369606, 8977449.47459453, 8978175.714942902, 8980823.309199514, 8986399.469469806, 8987286.208149318, 8988635.677757606, 8989007.8125, 8989823.887643946, 8990923.19512783, 8991698.038123699, 8995760.9375, 8996505.27902165, 8998404.6875, 9000087.5, 9006723.758447787, 9007730.695595762, 9011593.961157896, 9014312.558028048, 9015405.698822528, 9018871.875, 9022281.341011928, 9028117.60676763, 9031756.632399296, 9035437.444542855, 9035475.708563231, 9036225.789330821, 9039054.6875, 9042276.448786296, 9042276.5625, 9047422.108213494, 9048906.25, 9049337.274778951, 9049343.926521802, 9049676.5625, 9051593.75, 9051653.279222146, 9054008.27506452, 9054200.0, 9054202.928503577, 9057089.0625, 9062004.6875, 9064275.0, 9067558.9317701, 9070325.0, 9071454.946267962, 9072415.625, 9073806.25, 9074573.4375, 9076630.722140886, 9076727.710800415, 9076740.625, 9077115.99754669, 9077225.0, 9077393.318830438, 9077421.875, 9077523.805849094, 9077592.1875, 9077667.242308274, 9077863.248413267, 9077980.634919062, 9078184.375, 9078259.328637088, 9078263.831863746, 9078296.893942581, 9078382.008380143, 9078605.688466009, 9078658.982176026, 9078738.217141114, 9078768.096581921, 9078768.467559772, 9078789.998591928, 9078836.924935564, 9078844.105656767, 9078853.6316352, 9079008.542735476, 9079135.9795246, 9079165.625, 9079183.484242488, 9079193.36003522, 9079310.857537918, 9079313.770536145, 9079326.5625, 9079351.5625, 9079389.0625, 9079423.23114764, 9079440.989129279, 9079500.26496726, 9079526.036672864, 9079615.508425236, 9079631.25, 9079640.012236562, 9079658.9552185, 9079692.1875, 9079721.495526563, 9079734.31970989, 9079767.335299723, 9079789.253803605, 9079807.178666178, 9079848.109320361, 9079853.03429654, 9079867.1875, 9079868.75, 9079870.768835697, 9079943.083483767, 9079958.346551517, 9079987.424876578, 9080037.5, 9080147.26286756, 9080158.86462229, 9080183.620311834, 9080249.402396511, 9080260.9375, 9080285.250375988, 9080287.5, 9080364.970947098, 9080379.6875, 9080406.544468677, 9080434.230204655, 9080454.109698169, 9080456.25, 9080498.906445231, 9080559.375, 9080569.189556764, 9080628.311243879, 9080634.375, 9080656.350390032, 9080704.03323465, 9080724.020868849, 9080729.394462988, 9080729.773598662, 9080734.695116544, 9080857.8125, 9080874.077408178, 9080887.5, 9080915.67519556, 9080952.194161994, 9080966.543652916, 9081033.979732215, 9081094.639192177, 9081108.600368284, 9081113.082811777, 9081200.0, 9081220.268076649, 9081241.492395032, 9081373.292010512, 9081379.127031548, 9081448.4375, 9081450.261169244, 9081456.25, 9081461.36951685, 9081575.09786914, 9081641.504244536, 9081665.625, 9081678.125, 9081678.552787565, 9081715.625, 9081729.701680496, 9081744.008188782, 9081768.552416082, 9081785.9375, 9081792.566586671, 9081808.385274105, 9081927.563787108, 9081936.778405014, 9081937.404732462, 9081943.770438766, 9081972.447488116, 9082062.189428477, 9082184.375, 9082222.598713867, 9082270.353687396, 9082274.445272, 9082412.5, 9082433.875634162, 9082438.03913913, 9082454.6875, 9082514.0625, 9082534.124480773, 9082698.400597965, 9082796.3586499, 9082805.473540077, 9082873.716193177, 9082883.258536054, 9082923.86874553, 9083151.5625, 9083200.0, 9083255.714706473, 9083278.521006802, 9083324.340817971, 9083492.1875, 9083631.200146062, 9083660.991969138, 9083801.235520603, 9083929.6875, 9083939.760269584, 9083946.151146036, 9083989.0625, 9084035.277769007, 9084079.6875, 9084167.419962911, 9084168.75, 9084239.0625, 9084406.36403934, 9084471.17509212, 9084478.943740493, 9084802.23869785, 9085191.411248026, 9085194.595431378, 9085827.92612073, 9086361.582809553, 9086575.493097024, 9086822.972887186, 9087001.63815184, 9087375.0, 9088051.198805127, 9089732.8125, 9089911.36061194, 9090638.197447078, 9090865.625, 9092118.428580185, 9092199.600558665, 9092855.773980066, 9093086.632474592, 9093431.101611841, 9093444.103854286, 9093551.660711559, 9094838.033606635, 9095584.381367266, 9097164.0625, 9098872.744139316, 9101625.0, 9105364.679234583, 9105836.125913518, 9105844.28170562, 9106289.810617331, 9106724.803543128, 9107424.060053179, 9107939.823677942, 9108477.404980924, 9108795.15734941, 9109057.55850846, 9109818.204553923, 9110337.5, 9111443.281597393, 9111466.873425508, 9111849.658126114, 9113932.8125, 9114159.309953094, 9114169.389268363, 9114871.875, 9115396.875, 9115793.75, 9116115.116765393, 9116534.805940561, 9117169.291771386, 9119958.716768041, 9120216.717859931, 9120951.915274367, 9121164.0625, 9121195.082775414, 9122458.86443718, 9122632.300891671, 9135390.55171472, 9135471.160489898, 9135911.325100087, 9137487.118722772, 9137993.063143667, 9139231.64611869, 9140081.527810356, 9146126.399051065, 9148361.447800593, 9148409.939021263, 9149528.12691213, 9149618.952289201, 9151459.868732287, 9153148.957594095, 9154068.10131064, 9154410.9375, 9154443.322696248, 9155543.75, 9155610.169549061, 9155947.017702688, 9156060.082733963, 9156075.0, 9156775.016347826, 9156882.578897567, 9157024.162608584, 9157080.591821553, 9157083.458667984, 9157558.551731534, 9157958.882741267, 9158026.544290848, 9158092.933739627, 9158205.505798986, 9158253.125, 9158273.023878207, 9158415.625, 9158648.071169116, 9158696.149548557, 9158824.898750206, 9158859.154548416, 9159031.83156276, 9159311.010481399, 9159439.446474014, 9159487.73186901, 9159491.394512372, 9159504.920788316, 9159599.579055857, 9159617.869978894, 9159837.45606767, 9160081.854792872, 9160474.823814403, 9160487.983909547, 9160565.945181653, 9160576.5625, 9160648.4375, 9160671.319651542, 9160671.779500527, 9160765.625, 9160900.495214041, 9160925.917811392, 9160961.735906038, 9161184.375, 9161394.078404555, 9161403.02238648, 9161515.571986724, 9161612.5, 9161630.595738767, 9161688.557308575, 9161691.893338837, 9162393.84322172, 9162517.077553285, 9162751.749703659, 9163806.25, 9163831.25, 9165090.646016289, 9165968.75, 9166578.112618828, 9167315.547589287, 9169888.914010929, 9178272.765751567, 9179737.5, 9188358.36234159, 9202512.5, 9203023.4375, 9204674.390494928, 9204711.851708403, 9205297.97782435, 9205412.0074356, 9209076.008315198, 9217997.670574399, 9220124.78123789, 9224041.830988288, 9225127.289190494, 9225754.963540377, 9227439.0625, 9228209.432266008, 9228603.125, 9237131.397358552, 9237834.198764829, 9238106.149957998, 9239631.65686767, 9240199.682054594, 9242173.4375, 9252606.245390415, 9260512.60998617, 9260513.688778093, 9261957.8125, 9264344.996069102, 9265454.6875, 9265846.416635986, 9267031.25, 9267955.778287128, 9273051.54873331, 9274860.813400907, 9275726.953893961, 9275884.100968832, 9276634.35476198, 9277963.577986026, 9277973.4375, 9278979.171422856, 9279841.238988137, 9283033.683473341, 9283226.76712836, 9283801.44347315, 9283851.33055552, 9284128.125, 9286426.5625, 9286739.28248992, 9286946.799014088, 9288491.885628412, 9294219.540311705, 9296888.113118824, 9297215.625, 9299214.0625, 9299323.86012904, 9299332.374084353, 9299404.494080609, 9299581.25, 9300025.584389584, 9300101.5625, 9300340.680673327, 9300360.265228223, 9300385.9375, 9300503.25080198, 9300840.591665769, 9301022.487926988, 9301254.404244723, 9301289.0625, 9301597.812002677, 9301615.573375976, 9301693.361604502, 9301859.413234845, 9302170.954432767, 9302360.255487036, 9302609.042265704, 9302664.546697784, 9302814.021293445, 9302915.625, 9302965.57661263, 9303893.667686788, 9304433.537685372, 9304547.82038536, 9310088.416305332, 9311973.92327194, 9315672.7008001, 9316459.425879225, 9316513.836786186, 9316649.209205784, 9316649.402547231, 9317010.706028866, 9317040.113967594, 9317170.088708716, 9317420.3125, 9317519.449023917, 9317818.377251636, 9318106.25, 9318110.975144891, 9318165.100411115, 9318499.06224642, 9318515.625, 9318546.238178603, 9318572.999023927, 9318604.6875, 9318743.005042393, 9318753.125, 9319167.328398956, 9319180.356964707, 9319246.455669614, 9319794.108615134, 9319915.552836405, 9319916.188995548, 9320028.01718831, 9320103.125, 9320133.386303926, 9320548.75569312, 9320738.199017469, 9320977.16223531, 9321171.875, 9321246.279238107, 9321253.697030324, 9321305.867263125, 9321329.6875, 9321378.125, 9321403.945856147, 9321542.67282012, 9321898.904787716, 9321951.5625, 9322051.5625, 9322114.0625, 9322153.125, 9322495.3125, 9322496.346957425, 9322510.04378564, 9322517.12366541, 9322607.740540313, 9322621.875, 9322651.09573936, 9322651.903056033, 9322656.278467264, 9322665.625, 9322684.375, 9322695.621239638, 9322739.451122276, 9322791.983953342, 9322819.087176003, 9322829.352999497, 9322840.625, 9323002.12655283, 9323026.106338747, 9323075.0, 9323079.6875, 9323149.894259863, 9323188.417912526, 9323210.595342336, 9323264.88953386, 9323273.862044005, 9323290.438137809, 9323296.087626088, 9323384.403366502, 9323430.799080322, 9323459.987703353, 9323553.125, 9323605.966108069, 9323618.75, 9323650.0, 9323650.0, 9323656.25, 9323675.0, 9323739.0625, 9323797.291820956, 9323798.938601531, 9323803.125, 9323896.811431391, 9323948.776534751, 9323957.8125, 9323990.56781503, 9323997.613711996, 9324028.521456776, 9324035.9375, 9324059.375, 9324078.125, 9324112.5, 9324135.8117091, 9324280.356995964, 9324289.060815003, 9324377.704108216, 9324406.25, 9324413.410488747, 9324424.57568953, 9324427.977334587, 9324430.230336193, 9324435.267969176, 9324438.9099608, 9324441.510772692, 9324463.966021614, 9324476.533755295, 9324530.95262628, 9324571.875, 9324575.0, 9324579.688748155, 9324586.221374111, 9324597.759575501, 9324621.191807164, 9324623.285804007, 9324638.808314323, 9324668.75, 9324669.991500176, 9324721.092023136, 9324771.72573805, 9324848.4375, 9324854.29925226, 9324856.718297385, 9324871.993144905, 9324945.3125, ...], [50.344354358842004, 6.3334543979079765, 56.273252025290326, 28.08585739782483, 122.60179123693112, 84.37394916485984, 33.13500865074524, 8.532370311055939, 18.80716004938084, 8.853058934459819, 10.50502946731011, 9.362684597701824, 10.6318682222421, 5.416492284077253, 31.011008816359237, 10.755574889453312, 6.59024049241466, 8.353278983943241, 55.70458397731143, 13.298784578612608, 84.30661627978304, 91.65949496702385, 99.18090293666458, 33.119232999299804, 27.534158418361585, 88.97623477909396, 8.998534283121426, 6.105291083948725, 14.481308913987814, 5.045878645456308, 8.329889122131275, 10.456625388985657, 5.744560392846676, 21.321770104821802, 14.93426954168578, 50.413091537819, 6.629188958476905, 12.960665922193431, 12.14079849922242, 6.593842620010974, 6.0910218989691804, 43.78387454659968, 6.047188379687933, 17.011078211370954, 7.68825444986428, 26.90911031572265, 5.711553795832617, 50.13419316500939, 11.741872383944052, 5.167526752255633, 11.17944534531996, 56.869608242051, 65.95731903550788, 7.50603466918959, 12.566756614784499, 6.541643245957202, 8.092033443590683, 50.256342624296984, 8.669848465750675, 21.435535815545506, 107.9760423390672, 60.781431680577754, 5.241398112023518, 18.325162465627567, 7.920290336651122, 21.048501101621397, 10.692776114055162, 77.51495674863722, 30.1658725996675, 9.512961047673262, 7.29509726783965, 93.26651817211044, 5.171049796590839, 66.98009876060874, 8.122210058136274, 40.247369389998404, 12.405573909598296, 71.6203500086543, 25.781556521989717, 13.190781039507534, 88.64044879533857, 44.712444278604806, 15.644104918140426, 79.04281623590494, 23.177642868845535, 30.433383578705087, 54.494159188647934, 7.26000967585607, 82.40688358368865, 75.41063577527817, 12.853600870725092, 14.860156299369041, 14.651637483858376, 12.145932947678977, 56.34631741588476, 76.7801115959026, 9.163902527086037, 29.37512982457485, 114.6020510562461, 62.28132474165409, 7.072815717887297, 86.9134574122837, 60.19739809706279, 9.560150413892112, 13.202230425630777, 25.970954078763206, 15.177215762525432, 6.088262239837079, 76.35434336257073, 7.072832126939667, 12.26119158790763, 26.082084866052938, 66.61814646779443, 14.517707301481337, 48.22999114655346, 19.547520710324363, 44.27633632674666, 15.213109409777871, 44.47614883906263, 16.664253329422184, 16.64785793159335, 10.683542272654439, 108.95283226846634, 59.46092377457661, 6.438031670914582, 48.11865267486405, 46.24256535841868, 24.172764509721564, 98.22667883274491, 64.8199651959942, 69.66070049101467, 111.34239933544167, 16.67741067723943, 32.666153796165986, 21.407929259556077, 38.39809435759317, 9.001243126782928, 5.569173060753685, 107.3531351753713, 77.33641687766195, 65.13897136419533, 71.7909760712435, 14.644661907308581, 17.8948617828081, 5.48906843093795, 146.09883048101037, 11.200963857031631, 7.724556989673796, 24.11721236561259, 90.14034464526192, 10.703028271972489, 13.247053960301034, 40.09086517004437, 14.182202973841573, 108.13165453209056, 78.8230568611204, 23.77940750290216, 9.67048758880521, 50.175254815804244, 73.50636126081855, 27.472658486407187, 7.536991357313897, 15.154056101491385, 9.86813571991407, 64.25107607933246, 8.220948646092555, 92.48245570539792, 124.9239486066126, 69.61240601143439, 12.533357048213997, 109.29691536973199, 85.07542922068365, 65.61793765364007, 26.522113776866433, 43.51431315410201, 10.958346616397005, 15.877931037782423, 77.17522041500138, 35.19564728258638, 49.744144245860355, 19.20600413494168, 23.60669512464321, 9.40399034603151, 6.528127376979869, 46.29934900677262, 18.202646874817056, 10.80501706420702, 33.722486027754634, 20.427038341394844, 49.04520802707846, 13.896655169851114, 44.75883965990917, 11.00427803370662, 20.094426249451526, 110.48799381251658, 76.55113136580181, 29.422232811185577, 28.879582266875396, 9.97573686493521, 93.33430099801626, 5.284038173981993, 6.218877431632331, 20.09040221542455, 123.3119987013394, 54.349243907590136, 64.62850454439837, 41.61977112750858, 19.389321237972304, 100.55161127522011, 17.451386175738364, 19.49208797891238, 107.3834229963438, 73.49703650071903, 105.71678917374349, 128.98279028997217, 61.70939967662842, 13.826726424740295, 62.859855020034196, 16.351527705720464, 10.949614345487905, 65.30818368181198, 7.498702016355504, 41.787633715402436, 29.663023386690618, 15.059924010975418, 24.792615683505066, 7.649938578902926, 145.6148426974682, 21.751831636778075, 53.47861261019547, 23.947176579549968, 8.253725464493638, 81.63978090498574, 123.2832310883417, 16.95571171715028, 53.37396128619069, 56.95379232295773, 82.23333217443158, 131.4090379803189, 14.35209511242983, 119.19479261273416, 38.13675393945319, 36.12345158566884, 20.466459782812265, 151.57580095870986, 63.36607178182941, 54.00489268762024, 5.070006173922536, 33.268999239292356, 10.77448168451082, 5.457388463952327, 41.23523355382055, 16.799423027433914, 87.91423186146062, 100.47442336028821, 9.695924182298585, 10.68798881527179, 10.645349522323668, 176.8847954300541, 82.25313277413112, 6.945816254546672, 11.419861666239514, 12.656216110581987, 23.955456921222094, 21.73621304175438, 12.099951209088339, 6.494292607446553, 23.408388942308083, 11.250146453094949, 32.94915843377066, 12.236134843838819, 9.366470587479547, 35.97851084762854, 35.895105991498426, 23.614114796852732, 37.991290365161554, 13.615340657711702, 11.695221044210308, 5.980244969550381, 87.18179381822966, 40.23724112856195, 67.708265759033, 50.030379578997604, 93.06533241488843, 18.027221514316203, 29.87130203002458, 22.503611461305542, 6.888668978213546, 11.574432834659877, 8.438343668858485, 30.897348677049596, 133.38648905394047, 95.27586387345123, 93.49733342277092, 84.26468592839038, 87.56898388148618, 8.304729873420117, 9.355254322078187, 12.183758707352506, 7.34520325175444, 10.831494155242083, 92.57769537404207, 26.44275290652346, 17.197789419332707, 5.041658738525608, 19.905782107791563, 9.01334723380879, 68.87200646079232, 15.754617980232611, 112.06379894723119, 17.3225735211039, 6.806082591619542, 7.819645201994119, 35.932831790358584, 81.74412149425426, 74.65009658808549, 20.378892448275764, 29.701064982597487, 13.081126657469555, 89.50750939352454, 23.077054644215337, 77.84534679638638, 20.43260451410944, 20.17391942077866, 56.891816932044755, 38.065010661543674, 58.29139200783017, 11.991610361080925, 37.576672592323675, 12.285293666628457, 40.70742923659407, 14.432002117001119, 31.553819054648567, 11.078315620834053, 69.35862245211689, 63.067810504598576, 9.404779383012922, 7.302976441516541, 6.657429193971624, 6.9366446027325726, 139.45969423829172, 15.080596336287915, 8.78879383678542, 16.864786873301238, 136.731782240072, 7.096837480391544, 33.21462022769994, 35.55329796145454, 22.824539147435267, 27.338494421448406, 10.682292347513137, 7.201718609844166, 8.549188597149284, 24.788580717600084, 21.537257466581266, 28.6391837283127, 9.2658537097858, 14.404236079297137, 7.850766737041064, 35.592524524339524, 55.59701335892523, 88.13628743829135, 58.08221287331153, 104.09655627417507, 107.35566393649758, 14.14462461079747, 63.381489158729075, 19.5969645743376, 106.10756227053591, 70.41503276196556, 14.382594747046767, 8.949340896493403, 8.799728190098607, 90.01613306723173, 6.716755258077497, 10.226104992257689, 6.021063954577276, 28.668890431780287, 50.58058392504407, 25.287045236080612, 175.36424962455158, 94.89262919293884, 82.28020592413823, 12.163991330348287, 98.21266906575127, 6.387896393934683, 10.100087947864797, 13.704592926686395, 15.861171684018183, 15.995508192550734, 11.96223714343492, 25.77724939342555, 58.14334661325783, 6.328482833679927, 9.02522539483301, 94.32253768004168, 25.771999160955602, 37.15525200162816, 45.008541303647576, 8.507317810714529, 10.877869968312229, 79.10824688006238, 55.640977169213556, 11.804692893205878, 6.615898542838775, 83.21216901478397, 101.93696510730176, 69.15459966821285, 61.197193473805434, 220.40385848294704, 90.3850982360395, 5.452056650318539, 46.369541625778254, 88.59950331192789, 25.12059529635452, 44.63542861022975, 35.78989723208788, 35.40722493817856, 7.086364093640956, 7.177509666506488, 31.18493971005827, 49.500696489748684, 17.63033773111197, 43.165078838228276, 35.94684468291112, 5.67492407629344, 20.10784607725898, 66.7143396138874, 28.0980140955557, 60.95052576812374, 37.370493391785075, 5.224109381118799, 78.94042617629836, 117.02734560839176, 19.916470173434696, 7.843251514478145, 105.56396332915114, 39.78574795880689, 36.20338211877322, 27.0229072884387, 6.009417112770746, 9.242776942471616, 34.83141191691506, 22.715600312939927, 35.356421966095134, 21.24335624625686, 10.019164296494363, 8.219875535850349, 21.193857233589497, 239.33173464299847, 5.064203267675582, 52.32833853699527, 16.988401198822356, 10.768880089940884, 32.2731907058782, 82.33594945559557, 12.198006109768468, 33.10051177322116, 72.81539688022978, 11.669381261016891, 13.179474997799616, 11.993948759560224, 71.80748681439837, 53.14283645171208, 47.379786185196295, 15.118068726494503, 46.0139291053996, 157.19522468562417, 37.643105943679835, 8.700544704383299, 5.659257090522394, 72.99449550771985, 26.462684208453428, 32.07473269488003, 9.536703248435138, 29.655281483100122, 24.755367318152103, 89.05538004520818, 70.48977439730227, 77.82747806955376, 5.8254801961959295, 35.495164375648834, 54.53524335751362, 25.1694717706136, 38.172271372902614, 59.80262671190242, 56.09754318305698, 8.065318479244773, 48.063362666323485, 133.57147807236507, 50.65662339445109, 48.39594539785955, 64.8303126327266, 21.219620614663263, 15.943152716521967, 87.89553271072482, 81.16387934654668, 90.56559136782973, 51.914443732983834, 68.49154209851662, 26.47182962796282, 107.54036564291442, 8.315775087874451, 163.26057993943562, 7.394956778678591, 78.16628317286421, 27.639570637596275, 5.284015833918566, 11.15744492665824, 53.028282014709326, 20.900469059163203, 13.629483763961542, 45.38637976150305, 8.833927347611386, 9.103481290585242, 5.580304862370346, 110.77462949559512, 5.729773098430773, 5.739778561139502, 8.714578270902255, 11.194035498843391, 63.31252004392391, 12.369702985489843, 39.13229476856664, 89.31916730344335, 13.93436298119823, 93.27126673573625, 70.86854051450388, 83.96506768139345, 21.660937899313907, 7.2205769474028045, 17.257277159367135, 5.7760717269387465, 26.415316605544323, 35.65561704969097, 13.027470829030047, 49.892521293042535, 33.460999127652805, 7.471522317821999, 5.164075910246383, 92.69319374923035, 11.44049876160113, 46.85173172284661, 13.822615091691842, 11.568641306261817, 71.2703099355156, 42.40756385227466, 5.980156233960526, 8.824966213318168, 5.3605608914990555, 7.101843030506385, 34.89475918691923, 7.749817160938763, 8.934169653076006, 19.280153790448274, 69.67454466390775, 36.095362761543846, 19.809603868004157, 106.6686298432604, 20.788532419218384, 83.92590018329653, 29.79814455392154, 5.803343771172866, 105.16434609660422, 87.81217512747249, 93.1493938754487, 52.116310592093456, 26.621832875525513, 6.107683471977309, 39.90958685438068, 11.288334234089366, 67.08152702264712, 73.6539772038503, 126.80615862588658, 87.94253989295096, 16.320272271289934, 30.241071825250373, 61.9701518317124, 111.31383235010567, 6.77356926927986, 9.929457561706549, 7.385864033823029, 9.01814249164754, 12.875201072873066, 5.316060556494701, 12.179805013447913, 42.65900374856122, 21.738763859357185, 19.74511714184568, 99.69441280197873, 20.910382674627805, 66.83350494874117, 17.272138044381492, 124.57852364308857, 25.42946266159706, 11.284207770154463, 19.841056659867245, 75.13340795608305, 85.832302611849, 20.63698859527721, 111.14015090705679, 14.995835706076582, 25.775095262983402, 6.067790442912373, 29.837737300837517, 11.776883715709323, 6.3423820784251355, 20.903455267597913, 12.75753029771751, 26.77302620652955, 23.41955068512886, 17.68884317430524, 28.6508808510979, 44.50580418237816, 18.669690068234523, 69.87472064226498, 92.42846537035574, 65.4540732335928, 27.561265460275322, 5.050748012244626, 68.6842225106281, 29.747521953392276, 70.58730417306867, 14.802697178698185, 13.281488909601055, 161.61428282096898, 16.121999399348116, 53.29135133886487, 16.88670427379487, 60.00942481978559, 61.12215469343186, 63.12577883561943, 16.70137808037008, 20.039693427360707, 42.03498070158936, 11.050665875772093, 9.37788852385432, 23.412127959751206, 52.40176625363613, 18.491303037882528, 26.862493233971207, 46.65311565396563, 57.37638318292491, 86.10232135139823, 7.183929924320955, 61.530721248700914, 75.32320737783637, 25.066819712913745, 6.182642576382525, 7.354698220187233, 8.67975364433944, 12.628189948624126, 19.570392755309843, 7.070135613823685, 5.423730237646718, 48.12356758324105, 269.83712650583044, 73.36895418379578, 72.97912247826298, 67.23844685474496, 47.158529423566314, 85.56978426515099, 12.426316302936419, 90.63084817742866, 10.659912814361274, 91.41628466170765, 21.73569667079037, 23.865652429081415, 8.209635624884093, 233.93091321937686, 9.415850547564428, 9.82740055486029, 9.336792867268228, 95.68676862199374, 12.825937388376968, 41.410104665382924, 105.66161770054019, 24.177303058859692, 6.336797014193009, 22.0769760966217, 7.533695155513974, 5.649439401236033, 15.919014387299253, 51.104767374832775, 25.795902563973826, 5.125110773140179, 13.203279686661189, 28.887763385228084, 125.94763685050904, 60.431859751515226, 13.781034971596524, 49.47763350940118, 11.027533987593555, 5.364314899053559, 33.620697299538755, 33.397806573665065, 32.20288304700655, 48.21482315953787, 16.885076558454852, 17.505792901834642, 10.234209240687681, 90.51815854127652, 5.6338632003412155, 35.48960563520561, 22.052045817968697, 13.29720975069044, 77.6096735986259, 44.27865554457493, 98.58771811085452, 5.973886126205523, 26.592311707729134, 10.200657864005217, 16.701957843121306, 6.531540476000893, 14.35308519665882, 6.333898371494741, 60.53100605520124, 9.333020511280504, 17.434207528095097, 38.27593727664257, 17.37960319484586, 25.683581357229226, 49.276637117392966, 10.519607958055525, 47.940335340932606, 10.107644560106381, 6.792334432357056, 8.700009509817784, 67.34022516107845, 98.20096852043888, 24.637622964434264, 18.679407266934682, 8.830666394297694, 6.899750387196377, 53.678671060369595, 13.347297661423283, 16.919004421019682, 57.001713683797426, 57.326173191602614, 87.56223250641102, 6.046117053369309, 38.83125736324266, 21.226245426527065, 23.72195672684316, 20.259404628198375, 14.16293842692097, 17.74389946908802, 11.243730280644742, 11.78606451620037, 5.407412766339102, 36.782249558236224, 8.413921097990224, 73.43195091532714, 9.983855311483552, 27.68438769651767, 111.64205797624467, 85.65582269130091, 17.17426528862979, 11.66798536515089, 40.6966796207022, 40.43396168362242, 79.93015742783555, 10.981645382678247, 55.76888026881157, 12.001330756558648, 53.462335104367966, 5.573126393490582, 38.974872950845246, 7.72649756029307, 62.39086219044944, 19.571454471699504, 147.49803097395568, 7.9684561973678045, 39.0523722111752, 87.88249856960734, 11.276613213017976, 44.593895133880324, 19.44181040676756, 61.90233163437513, 35.93193932056882, 20.89201455460747, 54.640332949342614, 86.4396684214634, 5.609775900556911, 9.208925897576874, 19.935373691431362, 58.03862802205568, 17.553397849443147, 28.61651824959276, 37.064650355497264, 10.292214995761322, 20.131235274319188, 140.29037462601426, 21.567596368547253, 8.01375558557007, 19.18810981948317, 11.967340527749926, 23.05476057029986, 5.869779647137898, 16.10952507802607, 67.24367337613361, 148.28951993588097, 48.42159426981859, 8.366071166813608, 5.92420345248386, 26.691867627803706, 11.829373298965828, 7.040308534035278, 73.68043421914851, 28.43417582162431, 65.47616422039991, 5.786836027172136, 36.78682990971802, 16.347166097283704, 72.50428214555042, 24.3616072654531, 57.62174137830463, 13.404191260810496, 6.4849353448700935, 26.29170666332912, 5.174578238882965, 118.64291564166037, 28.13048631536252, 6.999657438078609, 69.16722426719895, 27.30249668053375, 7.841503125475685, 6.950808213749339, 8.39783601794155, 26.37488101064837, 115.10134456388288, 33.3701509391779, 49.447336523447454, 24.431262182072217, 5.808379270504972, 19.487897098503982, 5.267816303855598, 12.243504438569316, 50.07560248350671, 37.81575338677283, 16.840877505965693, 114.5489999824321, 31.78312588425478, 30.364791142992317, 30.24921089750066, 52.67316310807897, 11.21585731446123, 12.877761853694977, 140.27211131844078, 15.443714238843443, 45.26036886985949, 37.506401209534786, 13.961628059942708, 54.73164852266378, 20.326334812308367, 27.54314887519693, 22.683671903911605, 6.092084349546009, 6.898807615986298, 43.12861293797543, 9.065059411286336, 17.175875405732917, 27.734853224745233, 59.69149807735557, 72.75193082019346, 26.99622780499914, 116.41905194916122, 13.016346619158234, 6.390350947713583, 94.21820000703973, 24.940888162502674, 7.134890795966121, 62.23696914619781, 47.88634234920807, 20.973373103181324, 8.167850541505908, 17.836680071436696, 24.775589620298508, 28.67573197148332, 12.429815212709594, 38.05969003280763, 48.18773238605013, 15.086962051616096, 10.39607576848472, 89.14857951079149, 97.5969217675117, 15.781668320673619, 10.505166004455637, 51.86640890439035, 36.79023215141176, 61.33100447921879, 12.2997921786701, 9.969823527018278, 72.19735710547448, 11.738672870304764, 27.174231708029474, 17.637726380826994, 40.76957151930448, 94.0505142667989, 81.86685925883332, 16.310918230820462, 89.33687883452293, 74.85505044199456, 76.53306122888411, 31.395416722559865, 17.68607770921894, 22.74845368853605, 200.654615453666, 55.49593053964717, 19.379531247394, 11.981681774631642, 57.446850171543375, 68.28191442300225, 45.30567013411963, 47.72017962586714, 112.0051020038675, 78.85287507715888, 13.24989461496636, 27.38059256849069, 27.322408350277534, 125.06482244421011, 31.625098081541644, 39.344349969480845, 74.402215650341, 45.86234324644002, 109.03534270298128, 44.16263066908675, 55.63965903491464, 61.77998095065425, 13.928761151540739, 7.212998394266673, 23.31982706860908, 122.46227105962572, 9.858688303940001, 21.941853580317083, 65.22353224213524, 84.77478104571857, 47.442670525585655, 12.946762275920271, 10.631934273491176, 6.940669369084027, 7.7643612044684085, 25.312149543151445, 12.602355956343366, 32.04370255747163, 7.007757434080973, 29.055311112694653, 31.22055830828305, 5.4497120976791695, 38.46778608110549, 44.04126876400428, 130.5806520248372, 64.52973621556544, 57.04088953666474, 51.528991627903174, 6.321337303853251, 37.65455803115627, 41.86035006828432, 14.704627660054097, 17.996427176413015, 36.75671283024436, 27.442095591021566, 6.9205255402908925, 16.703710059210056, 97.54661573589833, 92.47343136577366, 86.94829542507615, 70.78874107446553, 85.611076371362, 5.181252599529015, 28.49186912587373, 10.527927000649905, 28.78968313021714, 6.188192192401027, 10.523488732572197, 14.407043026915748, 17.512054398574364, 12.884544047872966, 25.836734996891632, 19.952104297159522, 8.236208489826764, 73.09691256659241, 9.092007915287995, 118.3026681866892, 50.95902168495327, 20.741625935280844, 16.146438216506684, 18.034135575266813, 105.28704089524169, 88.21292996110307, 24.354144788909863, 79.02797615570465, 13.844561944456737, 82.94024978389241, 25.888199378946776, 57.119835740346495, 94.65287739944151, 5.640487672892614, 6.100472025989742, 82.03879754360896, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4899987.5, 4941580.194516583, 4982489.0625, 5020663.505493257, 5184245.350154011, 5258337.5, 5300076.23719531, 5302525.437571102, 5324429.837295322, 5327633.749371914, 5353871.436418052, 5437390.661764834, 5482962.15779316, 5483903.588461, 5491701.655678191, 5516691.935619735, 5519142.815398443, 5589923.561539311, 5663376.5625, 5666785.879593046, 5884432.8125, 5887391.756152467, 5907781.097227797, 5982743.75, 6149138.183517179, 6221281.113284561, 6261854.265724376, 6268131.413713678, 6509954.5612839665, 6510033.068153313, 6567940.706014945, 6570577.648586388, 6675428.703033419, 6835331.756824669, 6838392.185599235, 7075218.75, 7076788.350294904, 7077477.485937313, 7080879.729776676, 7176585.0237887055, 7187601.590558278, 7279158.584316178, 7295485.534685664, 7338103.579316679, 7417101.791596809, 7573344.439249368, 7598300.075092136, 7606021.875, 7668232.324572981, 7760031.342725994, 7860707.845350447, 7860728.125, 7916104.745104837, 8035371.598006242, 8049064.822185618, 8124830.026891274, 8172249.61305816, 8198554.6875, 8203522.535669264, 8204576.111000275, 8216235.9375, 8221160.212940189, 8221884.240560144, 8254849.110511292, 8272830.486554601, 8273485.699668996, 8297176.265205492, 8303292.1875, 8308040.625, 8313070.519689135, 8343355.309308114, 8343379.6875, 8349229.930076466, 8349980.94546837, 8370191.863184395, 8378826.5625, 8428694.438071113, 8433410.241622891, 8439988.906429563, 8441157.118211545, 8442559.375, 8442921.252756556, 8444243.922880722, 8445062.162008248, 8445087.15376948, 8445942.1875, 8447704.6875, 8449180.189617485, 8451189.0625, 8451362.448200818, 8498669.630428338, 8498683.339816835, 8512570.23431156, 8513394.316494707, 8515776.5625, 8516006.25, 8516293.545031516, 8516403.363778396, 8516972.902791185, 8517061.651285246, 8517238.87419229, 8517255.846023304, 8517439.187119568, 8517875.258682285, 8517947.89166008, 8517959.230975173, 8518202.383551424, 8518281.251567516, 8518443.75, 8518629.499256952, 8518678.746447628, 8518682.675445369, 8518795.070874294, 8518812.227480048, 8518876.5625, 8518886.78001891, 8518903.842563074, 8518926.631978089, 8518982.008355277, 8519031.638820363, 8519165.731967852, 8519252.820952065, 8519329.6875, 8519345.3125, 8519391.86723224, 8519394.34484825, 8519436.54811525, 8519479.394500738, 8519504.6875, 8519523.4375, 8519530.575401258, 8519671.64151696, 8519726.953872249, 8519807.784288453, 8519819.803919416, 8519925.0, 8519965.20689966, 8520025.72189485, 8520029.6875, 8520087.5, 8520090.544771075, 8520109.375, 8520110.599979002, 8520128.66817883, 8520134.996028474, 8520169.190079384, 8520185.754478997, 8520226.885919373, 8520246.603158142, 8520264.0625, 8520271.585180746, 8520297.908402087, 8520330.585764175, 8520345.09792382, 8520345.3125, 8520361.595152797, 8520377.827240836, 8520380.063026825, 8520502.598306112, 8520556.818980735, 8520612.444502026, 8520626.375547595, 8520643.804668454, 8520649.010678438, 8520741.570644388, 8520773.311298506, 8520782.280137312, 8520802.566218214, 8520874.042168355, 8520883.557577314, 8520910.319037316, 8520921.875, 8520950.354635553, 8520957.702358631, 8520971.3561004, 8520971.76387747, 8521054.913247889, 8521063.933014505, 8521065.440457782, 8521137.039284367, 8521238.297965348, 8521302.813638823, 8521443.834615821, 8521501.81937769, 8521507.053209733, 8521541.279373936, 8521616.970754467, 8521751.047895914, 8521854.073551988, 8522096.485621752, 8522279.383410262, 8522320.3125, 8522332.732072378, 8522374.347344564, 8522459.375, 8522514.0625, 8522667.1875, 8522669.760742618, 8522789.7374571, 8522875.75897874, 8522884.145097792, 8523026.170223821, 8523243.096866265, 8523316.59091202, 8523335.210395522, 8523370.346826099, 8523410.9375, 8523711.759631865, 8523844.336560091, 8523873.96997637, 8523883.647923775, 8523937.592753971, 8523970.037306773, 8524017.1875, 8524089.0625, 8524160.328744456, 8524243.607130993, 8524258.612403981, 8524317.514021719, 8524378.007993659, 8524507.8125, 8524629.388920076, 8524722.893560022, 8525017.1875, 8525242.218224393, 8525431.027410308, 8525537.627301276, 8525574.33223432, 8525664.819273233, 8525672.854065524, 8525709.09022414, 8525729.624855675, 8525745.41066193, 8525898.850219417, 8525939.506602453, 8525951.44545792, 8526020.3125, 8526045.3125, 8526055.824732184, 8526057.64875986, 8526076.5625, 8526108.924353974, 8526118.040591607, 8526138.9146566, 8526154.523792105, 8526196.875, 8526391.533656815, 8526470.373441549, 8526736.612743849, 8526746.636619058, 8526893.647598814, 8527295.811610213, 8527625.414780054, 8527693.75, 8527840.414615804, 8527894.151781203, 8528304.386706619, 8528323.105308745, 8528324.041139454, 8528385.810610972, 8529480.53688198, 8530254.866702529, 8531152.360735618, 8531860.653359188, 8532040.149030395, 8532269.294116253, 8532334.420785924, 8532476.235217344, 8532571.951945843, 8532605.92677325, 8534066.234637504, 8535150.04118346, 8535524.249327911, 8535893.75, 8536152.89560788, 8536430.440153314, 8537779.289836342, 8538315.960077394, 8539031.707304692, 8543692.1875, 8544581.25, 8549220.035061875, 8552964.0625, 8564228.125, 8566404.483585255, 8566426.121309526, 8566531.311995698, 8566906.846189143, 8567001.830662038, 8567745.588874064, 8569038.992926065, 8569068.395057777, 8571230.39801391, 8571330.51498066, 8571912.790299721, 8571913.313815586, 8576312.534169707, 8577298.465573585, 8581670.897207195, 8582114.850389848, 8582231.051849764, 8592324.912042787, 8601812.98574291, 8635566.478091225, 8635654.694311747, 8694029.012156291, 8740391.78577016, 8743609.375, 8743615.823137138, 8769513.512454169, 8781994.260159126, 8785873.647085112, 8786486.498661678, 8786770.3125, 8790406.25, 8790575.0, 8792046.161433617, 8793606.25, 8807775.97056841, 8813717.1875, 8814063.89647032, 8841096.875, 8841904.074186137, 8846904.044243358, 8847360.9375, 8848770.3125, 8850126.217089986, 8851992.677825844, 8856002.45129735, 8856291.257737532, 8860511.981248256, 8867410.797078447, 8868657.8125, 8869923.405669563, 8873190.625, 8875712.5, 8889423.523022296, 8889800.648296235, 8892754.131879311, 8892792.996996416, 8894097.643665697, 8895593.786018696, 8895639.905076006, 8895647.302132418, 8896868.75, 8896912.405528612, 8898126.5625, 8898830.972593231, 8898848.577924212, 8898887.437063148, 8900782.507536387, 8903153.421795195, 8903927.028145337, 8905135.010921605, 8905268.029463202, 8905757.8125, 8907092.10894687, 8910359.226517683, 8910658.44867827, 8912835.874540584, 8918937.5, 8919662.5, 8920081.25, 8923339.0625, 8924676.5625, 8924790.398941573, 8929182.8125, 8936914.911304004, 8945892.561825406, 8947478.125, 8947505.318397624, 8947582.323229201, 8948625.85881164, 8948635.9375, 8950756.011225276, 8950825.897383772, 8951189.954725351, 8951800.0, 8951951.319282146, 8952706.061452169, 8953760.589645207, 8955115.625, 8955140.625, 8955444.325211482, 8955879.059914798, 8956033.711616924, 8956300.787845792, 8956453.408857195, 8956533.034530034, 8956645.564030394, 8956667.662978902, 8956901.406153157, 8957504.49434116, 8959442.65764265, 8960401.176752904, 8960481.25, 8960948.280816076, 8961138.686470047, 8961221.769586693, 8962828.52033194, 8963470.146557521, 8963883.502238806, 8963920.3125, 8963994.143853787, 8964685.150260579, 8965275.0, 8965617.1875, 8965720.282580093, 8966760.9375, 8966799.211113436, 8966841.897631677, 8967441.959304752, 8968074.452531926, 8968083.784737563, 8968218.550172806, 8968233.352598205, 8968425.530794995, 8968546.875, 8968702.989817936, 8968878.334046382, 8968953.125, 8970157.763233723, 8970194.312762592, 8970664.88422447, 8970873.377710922, 8971018.237906065, 8971104.036437891, 8971323.4375, 8971353.103067258, 8971395.490102282, 8971770.3125, 8971949.230583625, 8972278.125, 8972318.75, 8972341.51345643, 8973117.805685218, 8973449.25085199, 8973867.1875, 8974136.554746857, 8974698.356718175, 8974816.395293664, 8975281.143292606, 8975384.7646566, 8975529.706405325, 8975702.58369606, 8977449.47459453, 8978175.714942902, 8980823.309199514, 8986399.469469806, 8987286.208149318, 8988635.677757606, 8989007.8125, 8989823.887643946, 8990923.19512783, 8991698.038123699, 8995760.9375, 8996505.27902165, 8998404.6875, 9000087.5, 9006723.758447787, 9007730.695595762, 9011593.961157896, 9014312.558028048, 9015405.698822528, 9018871.875, 9022281.341011928, 9028117.60676763, 9031756.632399296, 9035437.444542855, 9035475.708563231, 9036225.789330821, 9039054.6875, 9042276.448786296, 9042276.5625, 9047422.108213494, 9048906.25, 9049337.274778951, 9049343.926521802, 9049676.5625, 9051593.75, 9051653.279222146, 9054008.27506452, 9054200.0, 9054202.928503577, 9057089.0625, 9062004.6875, 9064275.0, 9067558.9317701, 9070325.0, 9071454.946267962, 9072415.625, 9073806.25, 9074573.4375, 9076630.722140886, 9076727.710800415, 9076740.625, 9077115.99754669, 9077225.0, 9077393.318830438, 9077421.875, 9077523.805849094, 9077592.1875, 9077667.242308274, 9077863.248413267, 9077980.634919062, 9078184.375, 9078259.328637088, 9078263.831863746, 9078296.893942581, 9078382.008380143, 9078605.688466009, 9078658.982176026, 9078738.217141114, 9078768.096581921, 9078768.467559772, 9078789.998591928, 9078836.924935564, 9078844.105656767, 9078853.6316352, 9079008.542735476, 9079135.9795246, 9079165.625, 9079183.484242488, 9079193.36003522, 9079310.857537918, 9079313.770536145, 9079326.5625, 9079351.5625, 9079389.0625, 9079423.23114764, 9079440.989129279, 9079500.26496726, 9079526.036672864, 9079615.508425236, 9079631.25, 9079640.012236562, 9079658.9552185, 9079692.1875, 9079721.495526563, 9079734.31970989, 9079767.335299723, 9079789.253803605, 9079807.178666178, 9079848.109320361, 9079853.03429654, 9079867.1875, 9079868.75, 9079870.768835697, 9079943.083483767, 9079958.346551517, 9079987.424876578, 9080037.5, 9080147.26286756, 9080158.86462229, 9080183.620311834, 9080249.402396511, 9080260.9375, 9080285.250375988, 9080287.5, 9080364.970947098, 9080379.6875, 9080406.544468677, 9080434.230204655, 9080454.109698169, 9080456.25, 9080498.906445231, 9080559.375, 9080569.189556764, 9080628.311243879, 9080634.375, 9080656.350390032, 9080704.03323465, 9080724.020868849, 9080729.394462988, 9080729.773598662, 9080734.695116544, 9080857.8125, 9080874.077408178, 9080887.5, 9080915.67519556, 9080952.194161994, 9080966.543652916, 9081033.979732215, 9081094.639192177, 9081108.600368284, 9081113.082811777, 9081200.0, 9081220.268076649, 9081241.492395032, 9081373.292010512, 9081379.127031548, 9081448.4375, 9081450.261169244, 9081456.25, 9081461.36951685, 9081575.09786914, 9081641.504244536, 9081665.625, 9081678.125, 9081678.552787565, 9081715.625, 9081729.701680496, 9081744.008188782, 9081768.552416082, 9081785.9375, 9081792.566586671, 9081808.385274105, 9081927.563787108, 9081936.778405014, 9081937.404732462, 9081943.770438766, 9081972.447488116, 9082062.189428477, 9082184.375, 9082222.598713867, 9082270.353687396, 9082274.445272, 9082412.5, 9082433.875634162, 9082438.03913913, 9082454.6875, 9082514.0625, 9082534.124480773, 9082698.400597965, 9082796.3586499, 9082805.473540077, 9082873.716193177, 9082883.258536054, 9082923.86874553, 9083151.5625, 9083200.0, 9083255.714706473, 9083278.521006802, 9083324.340817971, 9083492.1875, 9083631.200146062, 9083660.991969138, 9083801.235520603, 9083929.6875, 9083939.760269584, 9083946.151146036, 9083989.0625, 9084035.277769007, 9084079.6875, 9084167.419962911, 9084168.75, 9084239.0625, 9084406.36403934, 9084471.17509212, 9084478.943740493, 9084802.23869785, 9085191.411248026, 9085194.595431378, 9085827.92612073, 9086361.582809553, 9086575.493097024, 9086822.972887186, 9087001.63815184, 9087375.0, 9088051.198805127, 9089732.8125, 9089911.36061194, 9090638.197447078, 9090865.625, 9092118.428580185, 9092199.600558665, 9092855.773980066, 9093086.632474592, 9093431.101611841, 9093444.103854286, 9093551.660711559, 9094838.033606635, 9095584.381367266, 9097164.0625, 9098872.744139316, 9101625.0, 9105364.679234583, 9105836.125913518, 9105844.28170562, 9106289.810617331, 9106724.803543128, 9107424.060053179, 9107939.823677942, 9108477.404980924, 9108795.15734941, 9109057.55850846, 9109818.204553923, 9110337.5, 9111443.281597393, 9111466.873425508, 9111849.658126114, 9113932.8125, 9114159.309953094, 9114169.389268363, 9114871.875, 9115396.875, 9115793.75, 9116115.116765393, 9116534.805940561, 9117169.291771386, 9119958.716768041, 9120216.717859931, 9120951.915274367, 9121164.0625, 9121195.082775414, 9122458.86443718, 9122632.300891671, 9135390.55171472, 9135471.160489898, 9135911.325100087, 9137487.118722772, 9137993.063143667, 9139231.64611869, 9140081.527810356, 9146126.399051065, 9148361.447800593, 9148409.939021263, 9149528.12691213, 9149618.952289201, 9151459.868732287, 9153148.957594095, 9154068.10131064, 9154410.9375, 9154443.322696248, 9155543.75, 9155610.169549061, 9155947.017702688, 9156060.082733963, 9156075.0, 9156775.016347826, 9156882.578897567, 9157024.162608584, 9157080.591821553, 9157083.458667984, 9157558.551731534, 9157958.882741267, 9158026.544290848, 9158092.933739627, 9158205.505798986, 9158253.125, 9158273.023878207, 9158415.625, 9158648.071169116, 9158696.149548557, 9158824.898750206, 9158859.154548416, 9159031.83156276, 9159311.010481399, 9159439.446474014, 9159487.73186901, 9159491.394512372, 9159504.920788316, 9159599.579055857, 9159617.869978894, 9159837.45606767, 9160081.854792872, 9160474.823814403, 9160487.983909547, 9160565.945181653, 9160576.5625, 9160648.4375, 9160671.319651542, 9160671.779500527, 9160765.625, 9160900.495214041, 9160925.917811392, 9160961.735906038, 9161184.375, 9161394.078404555, 9161403.02238648, 9161515.571986724, 9161612.5, 9161630.595738767, 9161688.557308575, 9161691.893338837, 9162393.84322172, 9162517.077553285, 9162751.749703659, 9163806.25, 9163831.25, 9165090.646016289, 9165968.75, 9166578.112618828, 9167315.547589287, 9169888.914010929, 9178272.765751567, 9179737.5, 9188358.36234159, 9202512.5, 9203023.4375, 9204674.390494928, 9204711.851708403, 9205297.97782435, 9205412.0074356, 9209076.008315198, 9217997.670574399, 9220124.78123789, 9224041.830988288, 9225127.289190494, 9225754.963540377, 9227439.0625, 9228209.432266008, 9228603.125, 9237131.397358552, 9237834.198764829, 9238106.149957998, 9239631.65686767, 9240199.682054594, 9242173.4375, 9252606.245390415, 9260512.60998617, 9260513.688778093, 9261957.8125, 9264344.996069102, 9265454.6875, 9265846.416635986, 9267031.25, 9267955.778287128, 9273051.54873331, 9274860.813400907, 9275726.953893961, 9275884.100968832, 9276634.35476198, 9277963.577986026, 9277973.4375, 9278979.171422856, 9279841.238988137, 9283033.683473341, 9283226.76712836, 9283801.44347315, 9283851.33055552, 9284128.125, 9286426.5625, 9286739.28248992, 9286946.799014088, 9288491.885628412, 9294219.540311705, 9296888.113118824, 9297215.625, 9299214.0625, 9299323.86012904, 9299332.374084353, 9299404.494080609, 9299581.25, 9300025.584389584, 9300101.5625, 9300340.680673327, 9300360.265228223, 9300385.9375, 9300503.25080198, 9300840.591665769, 9301022.487926988, 9301254.404244723, 9301289.0625, 9301597.812002677, 9301615.573375976, 9301693.361604502, 9301859.413234845, 9302170.954432767, 9302360.255487036, 9302609.042265704, 9302664.546697784, 9302814.021293445, 9302915.625, 9302965.57661263, 9303893.667686788, 9304433.537685372, 9304547.82038536, 9310088.416305332, 9311973.92327194, 9315672.7008001, 9316459.425879225, 9316513.836786186, 9316649.209205784, 9316649.402547231, 9317010.706028866, 9317040.113967594, 9317170.088708716, 9317420.3125, 9317519.449023917, 9317818.377251636, 9318106.25, 9318110.975144891, 9318165.100411115, 9318499.06224642, 9318515.625, 9318546.238178603, 9318572.999023927, 9318604.6875, 9318743.005042393, 9318753.125, 9319167.328398956, 9319180.356964707, 9319246.455669614, 9319794.108615134, 9319915.552836405, 9319916.188995548, 9320028.01718831, 9320103.125, 9320133.386303926, 9320548.75569312, 9320738.199017469, 9320977.16223531, 9321171.875, 9321246.279238107, 9321253.697030324, 9321305.867263125, 9321329.6875, 9321378.125, 9321403.945856147, 9321542.67282012, 9321898.904787716, 9321951.5625, 9322051.5625, 9322114.0625, 9322153.125, 9322495.3125, 9322496.346957425, 9322510.04378564, 9322517.12366541, 9322607.740540313, 9322621.875, 9322651.09573936, 9322651.903056033, 9322656.278467264, 9322665.625, 9322684.375, 9322695.621239638, 9322739.451122276, 9322791.983953342, 9322819.087176003, 9322829.352999497, 9322840.625, 9323002.12655283, 9323026.106338747, 9323075.0, 9323079.6875, 9323149.894259863, 9323188.417912526, 9323210.595342336, 9323264.88953386, 9323273.862044005, 9323290.438137809, 9323296.087626088, 9323384.403366502, 9323430.799080322, 9323459.987703353, 9323553.125, 9323605.966108069, 9323618.75, 9323650.0, 9323650.0, 9323656.25, 9323675.0, 9323739.0625, 9323797.291820956, 9323798.938601531, 9323803.125, 9323896.811431391, 9323948.776534751, 9323957.8125, 9323990.56781503, 9323997.613711996, 9324028.521456776, 9324035.9375, 9324059.375, 9324078.125, 9324112.5, 9324135.8117091, 9324280.356995964, 9324289.060815003, 9324377.704108216, 9324406.25, 9324413.410488747, 9324424.57568953, 9324427.977334587, 9324430.230336193, 9324435.267969176, 9324438.9099608, 9324441.510772692, 9324463.966021614, 9324476.533755295, 9324530.95262628, 9324571.875, 9324575.0, 9324579.688748155, 9324586.221374111, 9324597.759575501, 9324621.191807164, 9324623.285804007, 9324638.808314323, 9324668.75, 9324669.991500176, 9324721.092023136, 9324771.72573805, 9324848.4375, 9324854.29925226, 9324856.718297385, 9324871.993144905, 9324945.3125, ...], [50.344354358842004, 6.3334543979079765, 56.273252025290326, 28.08585739782483, 122.60179123693112, 84.37394916485984, 33.13500865074524, 8.532370311055939, 18.80716004938084, 8.853058934459819, 10.50502946731011, 9.362684597701824, 10.6318682222421, 5.416492284077253, 31.011008816359237, 10.755574889453312, 6.59024049241466, 8.353278983943241, 55.70458397731143, 13.298784578612608, 84.30661627978304, 91.65949496702385, 99.18090293666458, 33.119232999299804, 27.534158418361585, 88.97623477909396, 8.998534283121426, 6.105291083948725, 14.481308913987814, 5.045878645456308, 8.329889122131275, 10.456625388985657, 5.744560392846676, 21.321770104821802, 14.93426954168578, 50.413091537819, 6.629188958476905, 12.960665922193431, 12.14079849922242, 6.593842620010974, 6.0910218989691804, 43.78387454659968, 6.047188379687933, 17.011078211370954, 7.68825444986428, 26.90911031572265, 5.711553795832617, 50.13419316500939, 11.741872383944052, 5.167526752255633, 11.17944534531996, 56.869608242051, 65.95731903550788, 7.50603466918959, 12.566756614784499, 6.541643245957202, 8.092033443590683, 50.256342624296984, 8.669848465750675, 21.435535815545506, 107.9760423390672, 60.781431680577754, 5.241398112023518, 18.325162465627567, 7.920290336651122, 21.048501101621397, 10.692776114055162, 77.51495674863722, 30.1658725996675, 9.512961047673262, 7.29509726783965, 93.26651817211044, 5.171049796590839, 66.98009876060874, 8.122210058136274, 40.247369389998404, 12.405573909598296, 71.6203500086543, 25.781556521989717, 13.190781039507534, 88.64044879533857, 44.712444278604806, 15.644104918140426, 79.04281623590494, 23.177642868845535, 30.433383578705087, 54.494159188647934, 7.26000967585607, 82.40688358368865, 75.41063577527817, 12.853600870725092, 14.860156299369041, 14.651637483858376, 12.145932947678977, 56.34631741588476, 76.7801115959026, 9.163902527086037, 29.37512982457485, 114.6020510562461, 62.28132474165409, 7.072815717887297, 86.9134574122837, 60.19739809706279, 9.560150413892112, 13.202230425630777, 25.970954078763206, 15.177215762525432, 6.088262239837079, 76.35434336257073, 7.072832126939667, 12.26119158790763, 26.082084866052938, 66.61814646779443, 14.517707301481337, 48.22999114655346, 19.547520710324363, 44.27633632674666, 15.213109409777871, 44.47614883906263, 16.664253329422184, 16.64785793159335, 10.683542272654439, 108.95283226846634, 59.46092377457661, 6.438031670914582, 48.11865267486405, 46.24256535841868, 24.172764509721564, 98.22667883274491, 64.8199651959942, 69.66070049101467, 111.34239933544167, 16.67741067723943, 32.666153796165986, 21.407929259556077, 38.39809435759317, 9.001243126782928, 5.569173060753685, 107.3531351753713, 77.33641687766195, 65.13897136419533, 71.7909760712435, 14.644661907308581, 17.8948617828081, 5.48906843093795, 146.09883048101037, 11.200963857031631, 7.724556989673796, 24.11721236561259, 90.14034464526192, 10.703028271972489, 13.247053960301034, 40.09086517004437, 14.182202973841573, 108.13165453209056, 78.8230568611204, 23.77940750290216, 9.67048758880521, 50.175254815804244, 73.50636126081855, 27.472658486407187, 7.536991357313897, 15.154056101491385, 9.86813571991407, 64.25107607933246, 8.220948646092555, 92.48245570539792, 124.9239486066126, 69.61240601143439, 12.533357048213997, 109.29691536973199, 85.07542922068365, 65.61793765364007, 26.522113776866433, 43.51431315410201, 10.958346616397005, 15.877931037782423, 77.17522041500138, 35.19564728258638, 49.744144245860355, 19.20600413494168, 23.60669512464321, 9.40399034603151, 6.528127376979869, 46.29934900677262, 18.202646874817056, 10.80501706420702, 33.722486027754634, 20.427038341394844, 49.04520802707846, 13.896655169851114, 44.75883965990917, 11.00427803370662, 20.094426249451526, 110.48799381251658, 76.55113136580181, 29.422232811185577, 28.879582266875396, 9.97573686493521, 93.33430099801626, 5.284038173981993, 6.218877431632331, 20.09040221542455, 123.3119987013394, 54.349243907590136, 64.62850454439837, 41.61977112750858, 19.389321237972304, 100.55161127522011, 17.451386175738364, 19.49208797891238, 107.3834229963438, 73.49703650071903, 105.71678917374349, 128.98279028997217, 61.70939967662842, 13.826726424740295, 62.859855020034196, 16.351527705720464, 10.949614345487905, 65.30818368181198, 7.498702016355504, 41.787633715402436, 29.663023386690618, 15.059924010975418, 24.792615683505066, 7.649938578902926, 145.6148426974682, 21.751831636778075, 53.47861261019547, 23.947176579549968, 8.253725464493638, 81.63978090498574, 123.2832310883417, 16.95571171715028, 53.37396128619069, 56.95379232295773, 82.23333217443158, 131.4090379803189, 14.35209511242983, 119.19479261273416, 38.13675393945319, 36.12345158566884, 20.466459782812265, 151.57580095870986, 63.36607178182941, 54.00489268762024, 5.070006173922536, 33.268999239292356, 10.77448168451082, 5.457388463952327, 41.23523355382055, 16.799423027433914, 87.91423186146062, 100.47442336028821, 9.695924182298585, 10.68798881527179, 10.645349522323668, 176.8847954300541, 82.25313277413112, 6.945816254546672, 11.419861666239514, 12.656216110581987, 23.955456921222094, 21.73621304175438, 12.099951209088339, 6.494292607446553, 23.408388942308083, 11.250146453094949, 32.94915843377066, 12.236134843838819, 9.366470587479547, 35.97851084762854, 35.895105991498426, 23.614114796852732, 37.991290365161554, 13.615340657711702, 11.695221044210308, 5.980244969550381, 87.18179381822966, 40.23724112856195, 67.708265759033, 50.030379578997604, 93.06533241488843, 18.027221514316203, 29.87130203002458, 22.503611461305542, 6.888668978213546, 11.574432834659877, 8.438343668858485, 30.897348677049596, 133.38648905394047, 95.27586387345123, 93.49733342277092, 84.26468592839038, 87.56898388148618, 8.304729873420117, 9.355254322078187, 12.183758707352506, 7.34520325175444, 10.831494155242083, 92.57769537404207, 26.44275290652346, 17.197789419332707, 5.041658738525608, 19.905782107791563, 9.01334723380879, 68.87200646079232, 15.754617980232611, 112.06379894723119, 17.3225735211039, 6.806082591619542, 7.819645201994119, 35.932831790358584, 81.74412149425426, 74.65009658808549, 20.378892448275764, 29.701064982597487, 13.081126657469555, 89.50750939352454, 23.077054644215337, 77.84534679638638, 20.43260451410944, 20.17391942077866, 56.891816932044755, 38.065010661543674, 58.29139200783017, 11.991610361080925, 37.576672592323675, 12.285293666628457, 40.70742923659407, 14.432002117001119, 31.553819054648567, 11.078315620834053, 69.35862245211689, 63.067810504598576, 9.404779383012922, 7.302976441516541, 6.657429193971624, 6.9366446027325726, 139.45969423829172, 15.080596336287915, 8.78879383678542, 16.864786873301238, 136.731782240072, 7.096837480391544, 33.21462022769994, 35.55329796145454, 22.824539147435267, 27.338494421448406, 10.682292347513137, 7.201718609844166, 8.549188597149284, 24.788580717600084, 21.537257466581266, 28.6391837283127, 9.2658537097858, 14.404236079297137, 7.850766737041064, 35.592524524339524, 55.59701335892523, 88.13628743829135, 58.08221287331153, 104.09655627417507, 107.35566393649758, 14.14462461079747, 63.381489158729075, 19.5969645743376, 106.10756227053591, 70.41503276196556, 14.382594747046767, 8.949340896493403, 8.799728190098607, 90.01613306723173, 6.716755258077497, 10.226104992257689, 6.021063954577276, 28.668890431780287, 50.58058392504407, 25.287045236080612, 175.36424962455158, 94.89262919293884, 82.28020592413823, 12.163991330348287, 98.21266906575127, 6.387896393934683, 10.100087947864797, 13.704592926686395, 15.861171684018183, 15.995508192550734, 11.96223714343492, 25.77724939342555, 58.14334661325783, 6.328482833679927, 9.02522539483301, 94.32253768004168, 25.771999160955602, 37.15525200162816, 45.008541303647576, 8.507317810714529, 10.877869968312229, 79.10824688006238, 55.640977169213556, 11.804692893205878, 6.615898542838775, 83.21216901478397, 101.93696510730176, 69.15459966821285, 61.197193473805434, 220.40385848294704, 90.3850982360395, 5.452056650318539, 46.369541625778254, 88.59950331192789, 25.12059529635452, 44.63542861022975, 35.78989723208788, 35.40722493817856, 7.086364093640956, 7.177509666506488, 31.18493971005827, 49.500696489748684, 17.63033773111197, 43.165078838228276, 35.94684468291112, 5.67492407629344, 20.10784607725898, 66.7143396138874, 28.0980140955557, 60.95052576812374, 37.370493391785075, 5.224109381118799, 78.94042617629836, 117.02734560839176, 19.916470173434696, 7.843251514478145, 105.56396332915114, 39.78574795880689, 36.20338211877322, 27.0229072884387, 6.009417112770746, 9.242776942471616, 34.83141191691506, 22.715600312939927, 35.356421966095134, 21.24335624625686, 10.019164296494363, 8.219875535850349, 21.193857233589497, 239.33173464299847, 5.064203267675582, 52.32833853699527, 16.988401198822356, 10.768880089940884, 32.2731907058782, 82.33594945559557, 12.198006109768468, 33.10051177322116, 72.81539688022978, 11.669381261016891, 13.179474997799616, 11.993948759560224, 71.80748681439837, 53.14283645171208, 47.379786185196295, 15.118068726494503, 46.0139291053996, 157.19522468562417, 37.643105943679835, 8.700544704383299, 5.659257090522394, 72.99449550771985, 26.462684208453428, 32.07473269488003, 9.536703248435138, 29.655281483100122, 24.755367318152103, 89.05538004520818, 70.48977439730227, 77.82747806955376, 5.8254801961959295, 35.495164375648834, 54.53524335751362, 25.1694717706136, 38.172271372902614, 59.80262671190242, 56.09754318305698, 8.065318479244773, 48.063362666323485, 133.57147807236507, 50.65662339445109, 48.39594539785955, 64.8303126327266, 21.219620614663263, 15.943152716521967, 87.89553271072482, 81.16387934654668, 90.56559136782973, 51.914443732983834, 68.49154209851662, 26.47182962796282, 107.54036564291442, 8.315775087874451, 163.26057993943562, 7.394956778678591, 78.16628317286421, 27.639570637596275, 5.284015833918566, 11.15744492665824, 53.028282014709326, 20.900469059163203, 13.629483763961542, 45.38637976150305, 8.833927347611386, 9.103481290585242, 5.580304862370346, 110.77462949559512, 5.729773098430773, 5.739778561139502, 8.714578270902255, 11.194035498843391, 63.31252004392391, 12.369702985489843, 39.13229476856664, 89.31916730344335, 13.93436298119823, 93.27126673573625, 70.86854051450388, 83.96506768139345, 21.660937899313907, 7.2205769474028045, 17.257277159367135, 5.7760717269387465, 26.415316605544323, 35.65561704969097, 13.027470829030047, 49.892521293042535, 33.460999127652805, 7.471522317821999, 5.164075910246383, 92.69319374923035, 11.44049876160113, 46.85173172284661, 13.822615091691842, 11.568641306261817, 71.2703099355156, 42.40756385227466, 5.980156233960526, 8.824966213318168, 5.3605608914990555, 7.101843030506385, 34.89475918691923, 7.749817160938763, 8.934169653076006, 19.280153790448274, 69.67454466390775, 36.095362761543846, 19.809603868004157, 106.6686298432604, 20.788532419218384, 83.92590018329653, 29.79814455392154, 5.803343771172866, 105.16434609660422, 87.81217512747249, 93.1493938754487, 52.116310592093456, 26.621832875525513, 6.107683471977309, 39.90958685438068, 11.288334234089366, 67.08152702264712, 73.6539772038503, 126.80615862588658, 87.94253989295096, 16.320272271289934, 30.241071825250373, 61.9701518317124, 111.31383235010567, 6.77356926927986, 9.929457561706549, 7.385864033823029, 9.01814249164754, 12.875201072873066, 5.316060556494701, 12.179805013447913, 42.65900374856122, 21.738763859357185, 19.74511714184568, 99.69441280197873, 20.910382674627805, 66.83350494874117, 17.272138044381492, 124.57852364308857, 25.42946266159706, 11.284207770154463, 19.841056659867245, 75.13340795608305, 85.832302611849, 20.63698859527721, 111.14015090705679, 14.995835706076582, 25.775095262983402, 6.067790442912373, 29.837737300837517, 11.776883715709323, 6.3423820784251355, 20.903455267597913, 12.75753029771751, 26.77302620652955, 23.41955068512886, 17.68884317430524, 28.6508808510979, 44.50580418237816, 18.669690068234523, 69.87472064226498, 92.42846537035574, 65.4540732335928, 27.561265460275322, 5.050748012244626, 68.6842225106281, 29.747521953392276, 70.58730417306867, 14.802697178698185, 13.281488909601055, 161.61428282096898, 16.121999399348116, 53.29135133886487, 16.88670427379487, 60.00942481978559, 61.12215469343186, 63.12577883561943, 16.70137808037008, 20.039693427360707, 42.03498070158936, 11.050665875772093, 9.37788852385432, 23.412127959751206, 52.40176625363613, 18.491303037882528, 26.862493233971207, 46.65311565396563, 57.37638318292491, 86.10232135139823, 7.183929924320955, 61.530721248700914, 75.32320737783637, 25.066819712913745, 6.182642576382525, 7.354698220187233, 8.67975364433944, 12.628189948624126, 19.570392755309843, 7.070135613823685, 5.423730237646718, 48.12356758324105, 269.83712650583044, 73.36895418379578, 72.97912247826298, 67.23844685474496, 47.158529423566314, 85.56978426515099, 12.426316302936419, 90.63084817742866, 10.659912814361274, 91.41628466170765, 21.73569667079037, 23.865652429081415, 8.209635624884093, 233.93091321937686, 9.415850547564428, 9.82740055486029, 9.336792867268228, 95.68676862199374, 12.825937388376968, 41.410104665382924, 105.66161770054019, 24.177303058859692, 6.336797014193009, 22.0769760966217, 7.533695155513974, 5.649439401236033, 15.919014387299253, 51.104767374832775, 25.795902563973826, 5.125110773140179, 13.203279686661189, 28.887763385228084, 125.94763685050904, 60.431859751515226, 13.781034971596524, 49.47763350940118, 11.027533987593555, 5.364314899053559, 33.620697299538755, 33.397806573665065, 32.20288304700655, 48.21482315953787, 16.885076558454852, 17.505792901834642, 10.234209240687681, 90.51815854127652, 5.6338632003412155, 35.48960563520561, 22.052045817968697, 13.29720975069044, 77.6096735986259, 44.27865554457493, 98.58771811085452, 5.973886126205523, 26.592311707729134, 10.200657864005217, 16.701957843121306, 6.531540476000893, 14.35308519665882, 6.333898371494741, 60.53100605520124, 9.333020511280504, 17.434207528095097, 38.27593727664257, 17.37960319484586, 25.683581357229226, 49.276637117392966, 10.519607958055525, 47.940335340932606, 10.107644560106381, 6.792334432357056, 8.700009509817784, 67.34022516107845, 98.20096852043888, 24.637622964434264, 18.679407266934682, 8.830666394297694, 6.899750387196377, 53.678671060369595, 13.347297661423283, 16.919004421019682, 57.001713683797426, 57.326173191602614, 87.56223250641102, 6.046117053369309, 38.83125736324266, 21.226245426527065, 23.72195672684316, 20.259404628198375, 14.16293842692097, 17.74389946908802, 11.243730280644742, 11.78606451620037, 5.407412766339102, 36.782249558236224, 8.413921097990224, 73.43195091532714, 9.983855311483552, 27.68438769651767, 111.64205797624467, 85.65582269130091, 17.17426528862979, 11.66798536515089, 40.6966796207022, 40.43396168362242, 79.93015742783555, 10.981645382678247, 55.76888026881157, 12.001330756558648, 53.462335104367966, 5.573126393490582, 38.974872950845246, 7.72649756029307, 62.39086219044944, 19.571454471699504, 147.49803097395568, 7.9684561973678045, 39.0523722111752, 87.88249856960734, 11.276613213017976, 44.593895133880324, 19.44181040676756, 61.90233163437513, 35.93193932056882, 20.89201455460747, 54.640332949342614, 86.4396684214634, 5.609775900556911, 9.208925897576874, 19.935373691431362, 58.03862802205568, 17.553397849443147, 28.61651824959276, 37.064650355497264, 10.292214995761322, 20.131235274319188, 140.29037462601426, 21.567596368547253, 8.01375558557007, 19.18810981948317, 11.967340527749926, 23.05476057029986, 5.869779647137898, 16.10952507802607, 67.24367337613361, 148.28951993588097, 48.42159426981859, 8.366071166813608, 5.92420345248386, 26.691867627803706, 11.829373298965828, 7.040308534035278, 73.68043421914851, 28.43417582162431, 65.47616422039991, 5.786836027172136, 36.78682990971802, 16.347166097283704, 72.50428214555042, 24.3616072654531, 57.62174137830463, 13.404191260810496, 6.4849353448700935, 26.29170666332912, 5.174578238882965, 118.64291564166037, 28.13048631536252, 6.999657438078609, 69.16722426719895, 27.30249668053375, 7.841503125475685, 6.950808213749339, 8.39783601794155, 26.37488101064837, 115.10134456388288, 33.3701509391779, 49.447336523447454, 24.431262182072217, 5.808379270504972, 19.487897098503982, 5.267816303855598, 12.243504438569316, 50.07560248350671, 37.81575338677283, 16.840877505965693, 114.5489999824321, 31.78312588425478, 30.364791142992317, 30.24921089750066, 52.67316310807897, 11.21585731446123, 12.877761853694977, 140.27211131844078, 15.443714238843443, 45.26036886985949, 37.506401209534786, 13.961628059942708, 54.73164852266378, 20.326334812308367, 27.54314887519693, 22.683671903911605, 6.092084349546009, 6.898807615986298, 43.12861293797543, 9.065059411286336, 17.175875405732917, 27.734853224745233, 59.69149807735557, 72.75193082019346, 26.99622780499914, 116.41905194916122, 13.016346619158234, 6.390350947713583, 94.21820000703973, 24.940888162502674, 7.134890795966121, 62.23696914619781, 47.88634234920807, 20.973373103181324, 8.167850541505908, 17.836680071436696, 24.775589620298508, 28.67573197148332, 12.429815212709594, 38.05969003280763, 48.18773238605013, 15.086962051616096, 10.39607576848472, 89.14857951079149, 97.5969217675117, 15.781668320673619, 10.505166004455637, 51.86640890439035, 36.79023215141176, 61.33100447921879, 12.2997921786701, 9.969823527018278, 72.19735710547448, 11.738672870304764, 27.174231708029474, 17.637726380826994, 40.76957151930448, 94.0505142667989, 81.86685925883332, 16.310918230820462, 89.33687883452293, 74.85505044199456, 76.53306122888411, 31.395416722559865, 17.68607770921894, 22.74845368853605, 200.654615453666, 55.49593053964717, 19.379531247394, 11.981681774631642, 57.446850171543375, 68.28191442300225, 45.30567013411963, 47.72017962586714, 112.0051020038675, 78.85287507715888, 13.24989461496636, 27.38059256849069, 27.322408350277534, 125.06482244421011, 31.625098081541644, 39.344349969480845, 74.402215650341, 45.86234324644002, 109.03534270298128, 44.16263066908675, 55.63965903491464, 61.77998095065425, 13.928761151540739, 7.212998394266673, 23.31982706860908, 122.46227105962572, 9.858688303940001, 21.941853580317083, 65.22353224213524, 84.77478104571857, 47.442670525585655, 12.946762275920271, 10.631934273491176, 6.940669369084027, 7.7643612044684085, 25.312149543151445, 12.602355956343366, 32.04370255747163, 7.007757434080973, 29.055311112694653, 31.22055830828305, 5.4497120976791695, 38.46778608110549, 44.04126876400428, 130.5806520248372, 64.52973621556544, 57.04088953666474, 51.528991627903174, 6.321337303853251, 37.65455803115627, 41.86035006828432, 14.704627660054097, 17.996427176413015, 36.75671283024436, 27.442095591021566, 6.9205255402908925, 16.703710059210056, 97.54661573589833, 92.47343136577366, 86.94829542507615, 70.78874107446553, 85.611076371362, 5.181252599529015, 28.49186912587373, 10.527927000649905, 28.78968313021714, 6.188192192401027, 10.523488732572197, 14.407043026915748, 17.512054398574364, 12.884544047872966, 25.836734996891632, 19.952104297159522, 8.236208489826764, 73.09691256659241, 9.092007915287995, 118.3026681866892, 50.95902168495327, 20.741625935280844, 16.146438216506684, 18.034135575266813, 105.28704089524169, 88.21292996110307, 24.354144788909863, 79.02797615570465, 13.844561944456737, 82.94024978389241, 25.888199378946776, 57.119835740346495, 94.65287739944151, 5.640487672892614, 6.100472025989742, 82.03879754360896, ...])
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);
([4899987.5, 4941580.194516583, 4982489.0625, 5020663.505493257, 5184245.350154011, 5258337.5, 5300076.23719531, 5302525.437571102, 5324429.837295322, 5327633.749371914, 5353871.436418052, 5437390.661764834, 5482962.15779316, 5483903.588461, 5491701.655678191, 5516691.935619735, 5519142.815398443, 5589923.561539311, 5663376.5625, 5666785.879593046, 5884432.8125, 5887391.756152467, 5907781.097227797, 5982743.75, 6149138.183517179, 6221281.113284561, 6261854.265724376, 6268131.413713678, 6509954.5612839665, 6510033.068153313, 6567940.706014945, 6570577.648586388, 6675428.703033419, 6835331.756824669, 6838392.185599235, 7075218.75, 7076788.350294904, 7077477.485937313, 7080879.729776676, 7176585.0237887055, 7187601.590558278, 7279158.584316178, 7295485.534685664, 7338103.579316679, 7417101.791596809, 7573344.439249368, 7598300.075092136, 7606021.875, 7668232.324572981, 7760031.342725994, 7860707.845350447, 7860728.125, 7916104.745104837, 8035371.598006242, 8049064.822185618, 8124830.026891274, 8172249.61305816, 8198554.6875, 8203522.535669264, 8204576.111000275, 8216235.9375, 8221160.212940189, 8221884.240560144, 8254849.110511292, 8272830.486554601, 8273485.699668996, 8297176.265205492, 8303292.1875, 8308040.625, 8313070.519689135, 8343355.309308114, 8343379.6875, 8349229.930076466, 8349980.94546837, 8370191.863184395, 8378826.5625, 8428694.438071113, 8433410.241622891, 8439988.906429563, 8441157.118211545, 8442559.375, 8442921.252756556, 8444243.922880722, 8445062.162008248, 8445087.15376948, 8445942.1875, 8447704.6875, 8449180.189617485, 8451189.0625, 8451362.448200818, 8498669.630428338, 8498683.339816835, 8512570.23431156, 8513394.316494707, 8515776.5625, 8516006.25, 8516293.545031516, 8516403.363778396, 8516972.902791185, 8517061.651285246, 8517238.87419229, 8517255.846023304, 8517439.187119568, 8517875.258682285, 8517947.89166008, 8517959.230975173, 8518202.383551424, 8518281.251567516, 8518443.75, 8518629.499256952, 8518678.746447628, 8518682.675445369, 8518795.070874294, 8518812.227480048, 8518876.5625, 8518886.78001891, 8518903.842563074, 8518926.631978089, 8518982.008355277, 8519031.638820363, 8519165.731967852, 8519252.820952065, 8519329.6875, 8519345.3125, 8519391.86723224, 8519394.34484825, 8519436.54811525, 8519479.394500738, 8519504.6875, 8519523.4375, 8519530.575401258, 8519671.64151696, 8519726.953872249, 8519807.784288453, 8519819.803919416, 8519925.0, 8519965.20689966, 8520025.72189485, 8520029.6875, 8520087.5, 8520090.544771075, 8520109.375, 8520110.599979002, 8520128.66817883, 8520134.996028474, 8520169.190079384, 8520185.754478997, 8520226.885919373, 8520246.603158142, 8520264.0625, 8520271.585180746, 8520297.908402087, 8520330.585764175, 8520345.09792382, 8520345.3125, 8520361.595152797, 8520377.827240836, 8520380.063026825, 8520502.598306112, 8520556.818980735, 8520612.444502026, 8520626.375547595, 8520643.804668454, 8520649.010678438, 8520741.570644388, 8520773.311298506, 8520782.280137312, 8520802.566218214, 8520874.042168355, 8520883.557577314, 8520910.319037316, 8520921.875, 8520950.354635553, 8520957.702358631, 8520971.3561004, 8520971.76387747, 8521054.913247889, 8521063.933014505, 8521065.440457782, 8521137.039284367, 8521238.297965348, 8521302.813638823, 8521443.834615821, 8521501.81937769, 8521507.053209733, 8521541.279373936, 8521616.970754467, 8521751.047895914, 8521854.073551988, 8522096.485621752, 8522279.383410262, 8522320.3125, 8522332.732072378, 8522374.347344564, 8522459.375, 8522514.0625, 8522667.1875, 8522669.760742618, 8522789.7374571, 8522875.75897874, 8522884.145097792, 8523026.170223821, 8523243.096866265, 8523316.59091202, 8523335.210395522, 8523370.346826099, 8523410.9375, 8523711.759631865, 8523844.336560091, 8523873.96997637, 8523883.647923775, 8523937.592753971, 8523970.037306773, 8524017.1875, 8524089.0625, 8524160.328744456, 8524243.607130993, 8524258.612403981, 8524317.514021719, 8524378.007993659, 8524507.8125, 8524629.388920076, 8524722.893560022, 8525017.1875, 8525242.218224393, 8525431.027410308, 8525537.627301276, 8525574.33223432, 8525664.819273233, 8525672.854065524, 8525709.09022414, 8525729.624855675, 8525745.41066193, 8525898.850219417, 8525939.506602453, 8525951.44545792, 8526020.3125, 8526045.3125, 8526055.824732184, 8526057.64875986, 8526076.5625, 8526108.924353974, 8526118.040591607, 8526138.9146566, 8526154.523792105, 8526196.875, 8526391.533656815, 8526470.373441549, 8526736.612743849, 8526746.636619058, 8526893.647598814, 8527295.811610213, 8527625.414780054, 8527693.75, 8527840.414615804, 8527894.151781203, 8528304.386706619, 8528323.105308745, 8528324.041139454, 8528385.810610972, 8529480.53688198, 8530254.866702529, 8531152.360735618, 8531860.653359188, 8532040.149030395, 8532269.294116253, 8532334.420785924, 8532476.235217344, 8532571.951945843, 8532605.92677325, 8534066.234637504, 8535150.04118346, 8535524.249327911, 8535893.75, 8536152.89560788, 8536430.440153314, 8537779.289836342, 8538315.960077394, 8539031.707304692, 8543692.1875, 8544581.25, 8549220.035061875, 8552964.0625, 8564228.125, 8566404.483585255, 8566426.121309526, 8566531.311995698, 8566906.846189143, 8567001.830662038, 8567745.588874064, 8569038.992926065, 8569068.395057777, 8571230.39801391, 8571330.51498066, 8571912.790299721, 8571913.313815586, 8576312.534169707, 8577298.465573585, 8581670.897207195, 8582114.850389848, 8582231.051849764, 8592324.912042787, 8601812.98574291, 8635566.478091225, 8635654.694311747, 8694029.012156291, 8740391.78577016, 8743609.375, 8743615.823137138, 8769513.512454169, 8781994.260159126, 8785873.647085112, 8786486.498661678, 8786770.3125, 8790406.25, 8790575.0, 8792046.161433617, 8793606.25, 8807775.97056841, 8813717.1875, 8814063.89647032, 8841096.875, 8841904.074186137, 8846904.044243358, 8847360.9375, 8848770.3125, 8850126.217089986, 8851992.677825844, 8856002.45129735, 8856291.257737532, 8860511.981248256, 8867410.797078447, 8868657.8125, 8869923.405669563, 8873190.625, 8875712.5, 8889423.523022296, 8889800.648296235, 8892754.131879311, 8892792.996996416, 8894097.643665697, 8895593.786018696, 8895639.905076006, 8895647.302132418, 8896868.75, 8896912.405528612, 8898126.5625, 8898830.972593231, 8898848.577924212, 8898887.437063148, 8900782.507536387, 8903153.421795195, 8903927.028145337, 8905135.010921605, 8905268.029463202, 8905757.8125, 8907092.10894687, 8910359.226517683, 8910658.44867827, 8912835.874540584, 8918937.5, 8919662.5, 8920081.25, 8923339.0625, 8924676.5625, 8924790.398941573, 8929182.8125, 8936914.911304004, 8945892.561825406, 8947478.125, 8947505.318397624, 8947582.323229201, 8948625.85881164, 8948635.9375, 8950756.011225276, 8950825.897383772, 8951189.954725351, 8951800.0, 8951951.319282146, 8952706.061452169, 8953760.589645207, 8955115.625, 8955140.625, 8955444.325211482, 8955879.059914798, 8956033.711616924, 8956300.787845792, 8956453.408857195, 8956533.034530034, 8956645.564030394, 8956667.662978902, 8956901.406153157, 8957504.49434116, 8959442.65764265, 8960401.176752904, 8960481.25, 8960948.280816076, 8961138.686470047, 8961221.769586693, 8962828.52033194, 8963470.146557521, 8963883.502238806, 8963920.3125, 8963994.143853787, 8964685.150260579, 8965275.0, 8965617.1875, 8965720.282580093, 8966760.9375, 8966799.211113436, 8966841.897631677, 8967441.959304752, 8968074.452531926, 8968083.784737563, 8968218.550172806, 8968233.352598205, 8968425.530794995, 8968546.875, 8968702.989817936, 8968878.334046382, 8968953.125, 8970157.763233723, 8970194.312762592, 8970664.88422447, 8970873.377710922, 8971018.237906065, 8971104.036437891, 8971323.4375, 8971353.103067258, 8971395.490102282, 8971770.3125, 8971949.230583625, 8972278.125, 8972318.75, 8972341.51345643, 8973117.805685218, 8973449.25085199, 8973867.1875, 8974136.554746857, 8974698.356718175, 8974816.395293664, 8975281.143292606, 8975384.7646566, 8975529.706405325, 8975702.58369606, 8977449.47459453, 8978175.714942902, 8980823.309199514, 8986399.469469806, 8987286.208149318, 8988635.677757606, 8989007.8125, 8989823.887643946, 8990923.19512783, 8991698.038123699, 8995760.9375, 8996505.27902165, 8998404.6875, 9000087.5, 9006723.758447787, 9007730.695595762, 9011593.961157896, 9014312.558028048, 9015405.698822528, 9018871.875, 9022281.341011928, 9028117.60676763, 9031756.632399296, 9035437.444542855, 9035475.708563231, 9036225.789330821, 9039054.6875, 9042276.448786296, 9042276.5625, 9047422.108213494, 9048906.25, 9049337.274778951, 9049343.926521802, 9049676.5625, 9051593.75, 9051653.279222146, 9054008.27506452, 9054200.0, 9054202.928503577, 9057089.0625, 9062004.6875, 9064275.0, 9067558.9317701, 9070325.0, 9071454.946267962, 9072415.625, 9073806.25, 9074573.4375, 9076630.722140886, 9076727.710800415, 9076740.625, 9077115.99754669, 9077225.0, 9077393.318830438, 9077421.875, 9077523.805849094, 9077592.1875, 9077667.242308274, 9077863.248413267, 9077980.634919062, 9078184.375, 9078259.328637088, 9078263.831863746, 9078296.893942581, 9078382.008380143, 9078605.688466009, 9078658.982176026, 9078738.217141114, 9078768.096581921, 9078768.467559772, 9078789.998591928, 9078836.924935564, 9078844.105656767, 9078853.6316352, 9079008.542735476, 9079135.9795246, 9079165.625, 9079183.484242488, 9079193.36003522, 9079310.857537918, 9079313.770536145, 9079326.5625, 9079351.5625, 9079389.0625, 9079423.23114764, 9079440.989129279, 9079500.26496726, 9079526.036672864, 9079615.508425236, 9079631.25, 9079640.012236562, 9079658.9552185, 9079692.1875, 9079721.495526563, 9079734.31970989, 9079767.335299723, 9079789.253803605, 9079807.178666178, 9079848.109320361, 9079853.03429654, 9079867.1875, 9079868.75, 9079870.768835697, 9079943.083483767, 9079958.346551517, 9079987.424876578, 9080037.5, 9080147.26286756, 9080158.86462229, 9080183.620311834, 9080249.402396511, 9080260.9375, 9080285.250375988, 9080287.5, 9080364.970947098, 9080379.6875, 9080406.544468677, 9080434.230204655, 9080454.109698169, 9080456.25, 9080498.906445231, 9080559.375, 9080569.189556764, 9080628.311243879, 9080634.375, 9080656.350390032, 9080704.03323465, 9080724.020868849, 9080729.394462988, 9080729.773598662, 9080734.695116544, 9080857.8125, 9080874.077408178, 9080887.5, 9080915.67519556, 9080952.194161994, 9080966.543652916, 9081033.979732215, 9081094.639192177, 9081108.600368284, 9081113.082811777, 9081200.0, 9081220.268076649, 9081241.492395032, 9081373.292010512, 9081379.127031548, 9081448.4375, 9081450.261169244, 9081456.25, 9081461.36951685, 9081575.09786914, 9081641.504244536, 9081665.625, 9081678.125, 9081678.552787565, 9081715.625, 9081729.701680496, 9081744.008188782, 9081768.552416082, 9081785.9375, 9081792.566586671, 9081808.385274105, 9081927.563787108, 9081936.778405014, 9081937.404732462, 9081943.770438766, 9081972.447488116, 9082062.189428477, 9082184.375, 9082222.598713867, 9082270.353687396, 9082274.445272, 9082412.5, 9082433.875634162, 9082438.03913913, 9082454.6875, 9082514.0625, 9082534.124480773, 9082698.400597965, 9082796.3586499, 9082805.473540077, 9082873.716193177, 9082883.258536054, 9082923.86874553, 9083151.5625, 9083200.0, 9083255.714706473, 9083278.521006802, 9083324.340817971, 9083492.1875, 9083631.200146062, 9083660.991969138, 9083801.235520603, 9083929.6875, 9083939.760269584, 9083946.151146036, 9083989.0625, 9084035.277769007, 9084079.6875, 9084167.419962911, 9084168.75, 9084239.0625, 9084406.36403934, 9084471.17509212, 9084478.943740493, 9084802.23869785, 9085191.411248026, 9085194.595431378, 9085827.92612073, 9086361.582809553, 9086575.493097024, 9086822.972887186, 9087001.63815184, 9087375.0, 9088051.198805127, 9089732.8125, 9089911.36061194, 9090638.197447078, 9090865.625, 9092118.428580185, 9092199.600558665, 9092855.773980066, 9093086.632474592, 9093431.101611841, 9093444.103854286, 9093551.660711559, 9094838.033606635, 9095584.381367266, 9097164.0625, 9098872.744139316, 9101625.0, 9105364.679234583, 9105836.125913518, 9105844.28170562, 9106289.810617331, 9106724.803543128, 9107424.060053179, 9107939.823677942, 9108477.404980924, 9108795.15734941, 9109057.55850846, 9109818.204553923, 9110337.5, 9111443.281597393, 9111466.873425508, 9111849.658126114, 9113932.8125, 9114159.309953094, 9114169.389268363, 9114871.875, 9115396.875, 9115793.75, 9116115.116765393, 9116534.805940561, 9117169.291771386, 9119958.716768041, 9120216.717859931, 9120951.915274367, 9121164.0625, 9121195.082775414, 9122458.86443718, 9122632.300891671, 9135390.55171472, 9135471.160489898, 9135911.325100087, 9137487.118722772, 9137993.063143667, 9139231.64611869, 9140081.527810356, 9146126.399051065, 9148361.447800593, 9148409.939021263, 9149528.12691213, 9149618.952289201, 9151459.868732287, 9153148.957594095, 9154068.10131064, 9154410.9375, 9154443.322696248, 9155543.75, 9155610.169549061, 9155947.017702688, 9156060.082733963, 9156075.0, 9156775.016347826, 9156882.578897567, 9157024.162608584, 9157080.591821553, 9157083.458667984, 9157558.551731534, 9157958.882741267, 9158026.544290848, 9158092.933739627, 9158205.505798986, 9158253.125, 9158273.023878207, 9158415.625, 9158648.071169116, 9158696.149548557, 9158824.898750206, 9158859.154548416, 9159031.83156276, 9159311.010481399, 9159439.446474014, 9159487.73186901, 9159491.394512372, 9159504.920788316, 9159599.579055857, 9159617.869978894, 9159837.45606767, 9160081.854792872, 9160474.823814403, 9160487.983909547, 9160565.945181653, 9160576.5625, 9160648.4375, 9160671.319651542, 9160671.779500527, 9160765.625, 9160900.495214041, 9160925.917811392, 9160961.735906038, 9161184.375, 9161394.078404555, 9161403.02238648, 9161515.571986724, 9161612.5, 9161630.595738767, 9161688.557308575, 9161691.893338837, 9162393.84322172, 9162517.077553285, 9162751.749703659, 9163806.25, 9163831.25, 9165090.646016289, 9165968.75, 9166578.112618828, 9167315.547589287, 9169888.914010929, 9178272.765751567, 9179737.5, 9188358.36234159, 9202512.5, 9203023.4375, 9204674.390494928, 9204711.851708403, 9205297.97782435, 9205412.0074356, 9209076.008315198, 9217997.670574399, 9220124.78123789, 9224041.830988288, 9225127.289190494, 9225754.963540377, 9227439.0625, 9228209.432266008, 9228603.125, 9237131.397358552, 9237834.198764829, 9238106.149957998, 9239631.65686767, 9240199.682054594, 9242173.4375, 9252606.245390415, 9260512.60998617, 9260513.688778093, 9261957.8125, 9264344.996069102, 9265454.6875, 9265846.416635986, 9267031.25, 9267955.778287128, 9273051.54873331, 9274860.813400907, 9275726.953893961, 9275884.100968832, 9276634.35476198, 9277963.577986026, 9277973.4375, 9278979.171422856, 9279841.238988137, 9283033.683473341, 9283226.76712836, 9283801.44347315, 9283851.33055552, 9284128.125, 9286426.5625, 9286739.28248992, 9286946.799014088, 9288491.885628412, 9294219.540311705, 9296888.113118824, 9297215.625, 9299214.0625, 9299323.86012904, 9299332.374084353, 9299404.494080609, 9299581.25, 9300025.584389584, 9300101.5625, 9300340.680673327, 9300360.265228223, 9300385.9375, 9300503.25080198, 9300840.591665769, 9301022.487926988, 9301254.404244723, 9301289.0625, 9301597.812002677, 9301615.573375976, 9301693.361604502, 9301859.413234845, 9302170.954432767, 9302360.255487036, 9302609.042265704, 9302664.546697784, 9302814.021293445, 9302915.625, 9302965.57661263, 9303893.667686788, 9304433.537685372, 9304547.82038536, 9310088.416305332, 9311973.92327194, 9315672.7008001, 9316459.425879225, 9316513.836786186, 9316649.209205784, 9316649.402547231, 9317010.706028866, 9317040.113967594, 9317170.088708716, 9317420.3125, 9317519.449023917, 9317818.377251636, 9318106.25, 9318110.975144891, 9318165.100411115, 9318499.06224642, 9318515.625, 9318546.238178603, 9318572.999023927, 9318604.6875, 9318743.005042393, 9318753.125, 9319167.328398956, 9319180.356964707, 9319246.455669614, 9319794.108615134, 9319915.552836405, 9319916.188995548, 9320028.01718831, 9320103.125, 9320133.386303926, 9320548.75569312, 9320738.199017469, 9320977.16223531, 9321171.875, 9321246.279238107, 9321253.697030324, 9321305.867263125, 9321329.6875, 9321378.125, 9321403.945856147, 9321542.67282012, 9321898.904787716, 9321951.5625, 9322051.5625, 9322114.0625, 9322153.125, 9322495.3125, 9322496.346957425, 9322510.04378564, 9322517.12366541, 9322607.740540313, 9322621.875, 9322651.09573936, 9322651.903056033, 9322656.278467264, 9322665.625, 9322684.375, 9322695.621239638, 9322739.451122276, 9322791.983953342, 9322819.087176003, 9322829.352999497, 9322840.625, 9323002.12655283, 9323026.106338747, 9323075.0, 9323079.6875, 9323149.894259863, 9323188.417912526, 9323210.595342336, 9323264.88953386, 9323273.862044005, 9323290.438137809, 9323296.087626088, 9323384.403366502, 9323430.799080322, 9323459.987703353, 9323553.125, 9323605.966108069, 9323618.75, 9323650.0, 9323650.0, 9323656.25, 9323675.0, 9323739.0625, 9323797.291820956, 9323798.938601531, 9323803.125, 9323896.811431391, 9323948.776534751, 9323957.8125, 9323990.56781503, 9323997.613711996, 9324028.521456776, 9324035.9375, 9324059.375, 9324078.125, 9324112.5, 9324135.8117091, 9324280.356995964, 9324289.060815003, 9324377.704108216, 9324406.25, 9324413.410488747, 9324424.57568953, 9324427.977334587, 9324430.230336193, 9324435.267969176, 9324438.9099608, 9324441.510772692, 9324463.966021614, 9324476.533755295, 9324530.95262628, 9324571.875, 9324575.0, 9324579.688748155, 9324586.221374111, 9324597.759575501, 9324621.191807164, 9324623.285804007, 9324638.808314323, 9324668.75, 9324669.991500176, 9324721.092023136, 9324771.72573805, 9324848.4375, 9324854.29925226, 9324856.718297385, 9324871.993144905, 9324945.3125, ...], [50.344354358842004, 6.3334543979079765, 56.273252025290326, 28.08585739782483, 122.60179123693112, 84.37394916485984, 33.13500865074524, 8.532370311055939, 18.80716004938084, 8.853058934459819, 10.50502946731011, 9.362684597701824, 10.6318682222421, 5.416492284077253, 31.011008816359237, 10.755574889453312, 6.59024049241466, 8.353278983943241, 55.70458397731143, 13.298784578612608, 84.30661627978304, 91.65949496702385, 99.18090293666458, 33.119232999299804, 27.534158418361585, 88.97623477909396, 8.998534283121426, 6.105291083948725, 14.481308913987814, 5.045878645456308, 8.329889122131275, 10.456625388985657, 5.744560392846676, 21.321770104821802, 14.93426954168578, 50.413091537819, 6.629188958476905, 12.960665922193431, 12.14079849922242, 6.593842620010974, 6.0910218989691804, 43.78387454659968, 6.047188379687933, 17.011078211370954, 7.68825444986428, 26.90911031572265, 5.711553795832617, 50.13419316500939, 11.741872383944052, 5.167526752255633, 11.17944534531996, 56.869608242051, 65.95731903550788, 7.50603466918959, 12.566756614784499, 6.541643245957202, 8.092033443590683, 50.256342624296984, 8.669848465750675, 21.435535815545506, 107.9760423390672, 60.781431680577754, 5.241398112023518, 18.325162465627567, 7.920290336651122, 21.048501101621397, 10.692776114055162, 77.51495674863722, 30.1658725996675, 9.512961047673262, 7.29509726783965, 93.26651817211044, 5.171049796590839, 66.98009876060874, 8.122210058136274, 40.247369389998404, 12.405573909598296, 71.6203500086543, 25.781556521989717, 13.190781039507534, 88.64044879533857, 44.712444278604806, 15.644104918140426, 79.04281623590494, 23.177642868845535, 30.433383578705087, 54.494159188647934, 7.26000967585607, 82.40688358368865, 75.41063577527817, 12.853600870725092, 14.860156299369041, 14.651637483858376, 12.145932947678977, 56.34631741588476, 76.7801115959026, 9.163902527086037, 29.37512982457485, 114.6020510562461, 62.28132474165409, 7.072815717887297, 86.9134574122837, 60.19739809706279, 9.560150413892112, 13.202230425630777, 25.970954078763206, 15.177215762525432, 6.088262239837079, 76.35434336257073, 7.072832126939667, 12.26119158790763, 26.082084866052938, 66.61814646779443, 14.517707301481337, 48.22999114655346, 19.547520710324363, 44.27633632674666, 15.213109409777871, 44.47614883906263, 16.664253329422184, 16.64785793159335, 10.683542272654439, 108.95283226846634, 59.46092377457661, 6.438031670914582, 48.11865267486405, 46.24256535841868, 24.172764509721564, 98.22667883274491, 64.8199651959942, 69.66070049101467, 111.34239933544167, 16.67741067723943, 32.666153796165986, 21.407929259556077, 38.39809435759317, 9.001243126782928, 5.569173060753685, 107.3531351753713, 77.33641687766195, 65.13897136419533, 71.7909760712435, 14.644661907308581, 17.8948617828081, 5.48906843093795, 146.09883048101037, 11.200963857031631, 7.724556989673796, 24.11721236561259, 90.14034464526192, 10.703028271972489, 13.247053960301034, 40.09086517004437, 14.182202973841573, 108.13165453209056, 78.8230568611204, 23.77940750290216, 9.67048758880521, 50.175254815804244, 73.50636126081855, 27.472658486407187, 7.536991357313897, 15.154056101491385, 9.86813571991407, 64.25107607933246, 8.220948646092555, 92.48245570539792, 124.9239486066126, 69.61240601143439, 12.533357048213997, 109.29691536973199, 85.07542922068365, 65.61793765364007, 26.522113776866433, 43.51431315410201, 10.958346616397005, 15.877931037782423, 77.17522041500138, 35.19564728258638, 49.744144245860355, 19.20600413494168, 23.60669512464321, 9.40399034603151, 6.528127376979869, 46.29934900677262, 18.202646874817056, 10.80501706420702, 33.722486027754634, 20.427038341394844, 49.04520802707846, 13.896655169851114, 44.75883965990917, 11.00427803370662, 20.094426249451526, 110.48799381251658, 76.55113136580181, 29.422232811185577, 28.879582266875396, 9.97573686493521, 93.33430099801626, 5.284038173981993, 6.218877431632331, 20.09040221542455, 123.3119987013394, 54.349243907590136, 64.62850454439837, 41.61977112750858, 19.389321237972304, 100.55161127522011, 17.451386175738364, 19.49208797891238, 107.3834229963438, 73.49703650071903, 105.71678917374349, 128.98279028997217, 61.70939967662842, 13.826726424740295, 62.859855020034196, 16.351527705720464, 10.949614345487905, 65.30818368181198, 7.498702016355504, 41.787633715402436, 29.663023386690618, 15.059924010975418, 24.792615683505066, 7.649938578902926, 145.6148426974682, 21.751831636778075, 53.47861261019547, 23.947176579549968, 8.253725464493638, 81.63978090498574, 123.2832310883417, 16.95571171715028, 53.37396128619069, 56.95379232295773, 82.23333217443158, 131.4090379803189, 14.35209511242983, 119.19479261273416, 38.13675393945319, 36.12345158566884, 20.466459782812265, 151.57580095870986, 63.36607178182941, 54.00489268762024, 5.070006173922536, 33.268999239292356, 10.77448168451082, 5.457388463952327, 41.23523355382055, 16.799423027433914, 87.91423186146062, 100.47442336028821, 9.695924182298585, 10.68798881527179, 10.645349522323668, 176.8847954300541, 82.25313277413112, 6.945816254546672, 11.419861666239514, 12.656216110581987, 23.955456921222094, 21.73621304175438, 12.099951209088339, 6.494292607446553, 23.408388942308083, 11.250146453094949, 32.94915843377066, 12.236134843838819, 9.366470587479547, 35.97851084762854, 35.895105991498426, 23.614114796852732, 37.991290365161554, 13.615340657711702, 11.695221044210308, 5.980244969550381, 87.18179381822966, 40.23724112856195, 67.708265759033, 50.030379578997604, 93.06533241488843, 18.027221514316203, 29.87130203002458, 22.503611461305542, 6.888668978213546, 11.574432834659877, 8.438343668858485, 30.897348677049596, 133.38648905394047, 95.27586387345123, 93.49733342277092, 84.26468592839038, 87.56898388148618, 8.304729873420117, 9.355254322078187, 12.183758707352506, 7.34520325175444, 10.831494155242083, 92.57769537404207, 26.44275290652346, 17.197789419332707, 5.041658738525608, 19.905782107791563, 9.01334723380879, 68.87200646079232, 15.754617980232611, 112.06379894723119, 17.3225735211039, 6.806082591619542, 7.819645201994119, 35.932831790358584, 81.74412149425426, 74.65009658808549, 20.378892448275764, 29.701064982597487, 13.081126657469555, 89.50750939352454, 23.077054644215337, 77.84534679638638, 20.43260451410944, 20.17391942077866, 56.891816932044755, 38.065010661543674, 58.29139200783017, 11.991610361080925, 37.576672592323675, 12.285293666628457, 40.70742923659407, 14.432002117001119, 31.553819054648567, 11.078315620834053, 69.35862245211689, 63.067810504598576, 9.404779383012922, 7.302976441516541, 6.657429193971624, 6.9366446027325726, 139.45969423829172, 15.080596336287915, 8.78879383678542, 16.864786873301238, 136.731782240072, 7.096837480391544, 33.21462022769994, 35.55329796145454, 22.824539147435267, 27.338494421448406, 10.682292347513137, 7.201718609844166, 8.549188597149284, 24.788580717600084, 21.537257466581266, 28.6391837283127, 9.2658537097858, 14.404236079297137, 7.850766737041064, 35.592524524339524, 55.59701335892523, 88.13628743829135, 58.08221287331153, 104.09655627417507, 107.35566393649758, 14.14462461079747, 63.381489158729075, 19.5969645743376, 106.10756227053591, 70.41503276196556, 14.382594747046767, 8.949340896493403, 8.799728190098607, 90.01613306723173, 6.716755258077497, 10.226104992257689, 6.021063954577276, 28.668890431780287, 50.58058392504407, 25.287045236080612, 175.36424962455158, 94.89262919293884, 82.28020592413823, 12.163991330348287, 98.21266906575127, 6.387896393934683, 10.100087947864797, 13.704592926686395, 15.861171684018183, 15.995508192550734, 11.96223714343492, 25.77724939342555, 58.14334661325783, 6.328482833679927, 9.02522539483301, 94.32253768004168, 25.771999160955602, 37.15525200162816, 45.008541303647576, 8.507317810714529, 10.877869968312229, 79.10824688006238, 55.640977169213556, 11.804692893205878, 6.615898542838775, 83.21216901478397, 101.93696510730176, 69.15459966821285, 61.197193473805434, 220.40385848294704, 90.3850982360395, 5.452056650318539, 46.369541625778254, 88.59950331192789, 25.12059529635452, 44.63542861022975, 35.78989723208788, 35.40722493817856, 7.086364093640956, 7.177509666506488, 31.18493971005827, 49.500696489748684, 17.63033773111197, 43.165078838228276, 35.94684468291112, 5.67492407629344, 20.10784607725898, 66.7143396138874, 28.0980140955557, 60.95052576812374, 37.370493391785075, 5.224109381118799, 78.94042617629836, 117.02734560839176, 19.916470173434696, 7.843251514478145, 105.56396332915114, 39.78574795880689, 36.20338211877322, 27.0229072884387, 6.009417112770746, 9.242776942471616, 34.83141191691506, 22.715600312939927, 35.356421966095134, 21.24335624625686, 10.019164296494363, 8.219875535850349, 21.193857233589497, 239.33173464299847, 5.064203267675582, 52.32833853699527, 16.988401198822356, 10.768880089940884, 32.2731907058782, 82.33594945559557, 12.198006109768468, 33.10051177322116, 72.81539688022978, 11.669381261016891, 13.179474997799616, 11.993948759560224, 71.80748681439837, 53.14283645171208, 47.379786185196295, 15.118068726494503, 46.0139291053996, 157.19522468562417, 37.643105943679835, 8.700544704383299, 5.659257090522394, 72.99449550771985, 26.462684208453428, 32.07473269488003, 9.536703248435138, 29.655281483100122, 24.755367318152103, 89.05538004520818, 70.48977439730227, 77.82747806955376, 5.8254801961959295, 35.495164375648834, 54.53524335751362, 25.1694717706136, 38.172271372902614, 59.80262671190242, 56.09754318305698, 8.065318479244773, 48.063362666323485, 133.57147807236507, 50.65662339445109, 48.39594539785955, 64.8303126327266, 21.219620614663263, 15.943152716521967, 87.89553271072482, 81.16387934654668, 90.56559136782973, 51.914443732983834, 68.49154209851662, 26.47182962796282, 107.54036564291442, 8.315775087874451, 163.26057993943562, 7.394956778678591, 78.16628317286421, 27.639570637596275, 5.284015833918566, 11.15744492665824, 53.028282014709326, 20.900469059163203, 13.629483763961542, 45.38637976150305, 8.833927347611386, 9.103481290585242, 5.580304862370346, 110.77462949559512, 5.729773098430773, 5.739778561139502, 8.714578270902255, 11.194035498843391, 63.31252004392391, 12.369702985489843, 39.13229476856664, 89.31916730344335, 13.93436298119823, 93.27126673573625, 70.86854051450388, 83.96506768139345, 21.660937899313907, 7.2205769474028045, 17.257277159367135, 5.7760717269387465, 26.415316605544323, 35.65561704969097, 13.027470829030047, 49.892521293042535, 33.460999127652805, 7.471522317821999, 5.164075910246383, 92.69319374923035, 11.44049876160113, 46.85173172284661, 13.822615091691842, 11.568641306261817, 71.2703099355156, 42.40756385227466, 5.980156233960526, 8.824966213318168, 5.3605608914990555, 7.101843030506385, 34.89475918691923, 7.749817160938763, 8.934169653076006, 19.280153790448274, 69.67454466390775, 36.095362761543846, 19.809603868004157, 106.6686298432604, 20.788532419218384, 83.92590018329653, 29.79814455392154, 5.803343771172866, 105.16434609660422, 87.81217512747249, 93.1493938754487, 52.116310592093456, 26.621832875525513, 6.107683471977309, 39.90958685438068, 11.288334234089366, 67.08152702264712, 73.6539772038503, 126.80615862588658, 87.94253989295096, 16.320272271289934, 30.241071825250373, 61.9701518317124, 111.31383235010567, 6.77356926927986, 9.929457561706549, 7.385864033823029, 9.01814249164754, 12.875201072873066, 5.316060556494701, 12.179805013447913, 42.65900374856122, 21.738763859357185, 19.74511714184568, 99.69441280197873, 20.910382674627805, 66.83350494874117, 17.272138044381492, 124.57852364308857, 25.42946266159706, 11.284207770154463, 19.841056659867245, 75.13340795608305, 85.832302611849, 20.63698859527721, 111.14015090705679, 14.995835706076582, 25.775095262983402, 6.067790442912373, 29.837737300837517, 11.776883715709323, 6.3423820784251355, 20.903455267597913, 12.75753029771751, 26.77302620652955, 23.41955068512886, 17.68884317430524, 28.6508808510979, 44.50580418237816, 18.669690068234523, 69.87472064226498, 92.42846537035574, 65.4540732335928, 27.561265460275322, 5.050748012244626, 68.6842225106281, 29.747521953392276, 70.58730417306867, 14.802697178698185, 13.281488909601055, 161.61428282096898, 16.121999399348116, 53.29135133886487, 16.88670427379487, 60.00942481978559, 61.12215469343186, 63.12577883561943, 16.70137808037008, 20.039693427360707, 42.03498070158936, 11.050665875772093, 9.37788852385432, 23.412127959751206, 52.40176625363613, 18.491303037882528, 26.862493233971207, 46.65311565396563, 57.37638318292491, 86.10232135139823, 7.183929924320955, 61.530721248700914, 75.32320737783637, 25.066819712913745, 6.182642576382525, 7.354698220187233, 8.67975364433944, 12.628189948624126, 19.570392755309843, 7.070135613823685, 5.423730237646718, 48.12356758324105, 269.83712650583044, 73.36895418379578, 72.97912247826298, 67.23844685474496, 47.158529423566314, 85.56978426515099, 12.426316302936419, 90.63084817742866, 10.659912814361274, 91.41628466170765, 21.73569667079037, 23.865652429081415, 8.209635624884093, 233.93091321937686, 9.415850547564428, 9.82740055486029, 9.336792867268228, 95.68676862199374, 12.825937388376968, 41.410104665382924, 105.66161770054019, 24.177303058859692, 6.336797014193009, 22.0769760966217, 7.533695155513974, 5.649439401236033, 15.919014387299253, 51.104767374832775, 25.795902563973826, 5.125110773140179, 13.203279686661189, 28.887763385228084, 125.94763685050904, 60.431859751515226, 13.781034971596524, 49.47763350940118, 11.027533987593555, 5.364314899053559, 33.620697299538755, 33.397806573665065, 32.20288304700655, 48.21482315953787, 16.885076558454852, 17.505792901834642, 10.234209240687681, 90.51815854127652, 5.6338632003412155, 35.48960563520561, 22.052045817968697, 13.29720975069044, 77.6096735986259, 44.27865554457493, 98.58771811085452, 5.973886126205523, 26.592311707729134, 10.200657864005217, 16.701957843121306, 6.531540476000893, 14.35308519665882, 6.333898371494741, 60.53100605520124, 9.333020511280504, 17.434207528095097, 38.27593727664257, 17.37960319484586, 25.683581357229226, 49.276637117392966, 10.519607958055525, 47.940335340932606, 10.107644560106381, 6.792334432357056, 8.700009509817784, 67.34022516107845, 98.20096852043888, 24.637622964434264, 18.679407266934682, 8.830666394297694, 6.899750387196377, 53.678671060369595, 13.347297661423283, 16.919004421019682, 57.001713683797426, 57.326173191602614, 87.56223250641102, 6.046117053369309, 38.83125736324266, 21.226245426527065, 23.72195672684316, 20.259404628198375, 14.16293842692097, 17.74389946908802, 11.243730280644742, 11.78606451620037, 5.407412766339102, 36.782249558236224, 8.413921097990224, 73.43195091532714, 9.983855311483552, 27.68438769651767, 111.64205797624467, 85.65582269130091, 17.17426528862979, 11.66798536515089, 40.6966796207022, 40.43396168362242, 79.93015742783555, 10.981645382678247, 55.76888026881157, 12.001330756558648, 53.462335104367966, 5.573126393490582, 38.974872950845246, 7.72649756029307, 62.39086219044944, 19.571454471699504, 147.49803097395568, 7.9684561973678045, 39.0523722111752, 87.88249856960734, 11.276613213017976, 44.593895133880324, 19.44181040676756, 61.90233163437513, 35.93193932056882, 20.89201455460747, 54.640332949342614, 86.4396684214634, 5.609775900556911, 9.208925897576874, 19.935373691431362, 58.03862802205568, 17.553397849443147, 28.61651824959276, 37.064650355497264, 10.292214995761322, 20.131235274319188, 140.29037462601426, 21.567596368547253, 8.01375558557007, 19.18810981948317, 11.967340527749926, 23.05476057029986, 5.869779647137898, 16.10952507802607, 67.24367337613361, 148.28951993588097, 48.42159426981859, 8.366071166813608, 5.92420345248386, 26.691867627803706, 11.829373298965828, 7.040308534035278, 73.68043421914851, 28.43417582162431, 65.47616422039991, 5.786836027172136, 36.78682990971802, 16.347166097283704, 72.50428214555042, 24.3616072654531, 57.62174137830463, 13.404191260810496, 6.4849353448700935, 26.29170666332912, 5.174578238882965, 118.64291564166037, 28.13048631536252, 6.999657438078609, 69.16722426719895, 27.30249668053375, 7.841503125475685, 6.950808213749339, 8.39783601794155, 26.37488101064837, 115.10134456388288, 33.3701509391779, 49.447336523447454, 24.431262182072217, 5.808379270504972, 19.487897098503982, 5.267816303855598, 12.243504438569316, 50.07560248350671, 37.81575338677283, 16.840877505965693, 114.5489999824321, 31.78312588425478, 30.364791142992317, 30.24921089750066, 52.67316310807897, 11.21585731446123, 12.877761853694977, 140.27211131844078, 15.443714238843443, 45.26036886985949, 37.506401209534786, 13.961628059942708, 54.73164852266378, 20.326334812308367, 27.54314887519693, 22.683671903911605, 6.092084349546009, 6.898807615986298, 43.12861293797543, 9.065059411286336, 17.175875405732917, 27.734853224745233, 59.69149807735557, 72.75193082019346, 26.99622780499914, 116.41905194916122, 13.016346619158234, 6.390350947713583, 94.21820000703973, 24.940888162502674, 7.134890795966121, 62.23696914619781, 47.88634234920807, 20.973373103181324, 8.167850541505908, 17.836680071436696, 24.775589620298508, 28.67573197148332, 12.429815212709594, 38.05969003280763, 48.18773238605013, 15.086962051616096, 10.39607576848472, 89.14857951079149, 97.5969217675117, 15.781668320673619, 10.505166004455637, 51.86640890439035, 36.79023215141176, 61.33100447921879, 12.2997921786701, 9.969823527018278, 72.19735710547448, 11.738672870304764, 27.174231708029474, 17.637726380826994, 40.76957151930448, 94.0505142667989, 81.86685925883332, 16.310918230820462, 89.33687883452293, 74.85505044199456, 76.53306122888411, 31.395416722559865, 17.68607770921894, 22.74845368853605, 200.654615453666, 55.49593053964717, 19.379531247394, 11.981681774631642, 57.446850171543375, 68.28191442300225, 45.30567013411963, 47.72017962586714, 112.0051020038675, 78.85287507715888, 13.24989461496636, 27.38059256849069, 27.322408350277534, 125.06482244421011, 31.625098081541644, 39.344349969480845, 74.402215650341, 45.86234324644002, 109.03534270298128, 44.16263066908675, 55.63965903491464, 61.77998095065425, 13.928761151540739, 7.212998394266673, 23.31982706860908, 122.46227105962572, 9.858688303940001, 21.941853580317083, 65.22353224213524, 84.77478104571857, 47.442670525585655, 12.946762275920271, 10.631934273491176, 6.940669369084027, 7.7643612044684085, 25.312149543151445, 12.602355956343366, 32.04370255747163, 7.007757434080973, 29.055311112694653, 31.22055830828305, 5.4497120976791695, 38.46778608110549, 44.04126876400428, 130.5806520248372, 64.52973621556544, 57.04088953666474, 51.528991627903174, 6.321337303853251, 37.65455803115627, 41.86035006828432, 14.704627660054097, 17.996427176413015, 36.75671283024436, 27.442095591021566, 6.9205255402908925, 16.703710059210056, 97.54661573589833, 92.47343136577366, 86.94829542507615, 70.78874107446553, 85.611076371362, 5.181252599529015, 28.49186912587373, 10.527927000649905, 28.78968313021714, 6.188192192401027, 10.523488732572197, 14.407043026915748, 17.512054398574364, 12.884544047872966, 25.836734996891632, 19.952104297159522, 8.236208489826764, 73.09691256659241, 9.092007915287995, 118.3026681866892, 50.95902168495327, 20.741625935280844, 16.146438216506684, 18.034135575266813, 105.28704089524169, 88.21292996110307, 24.354144788909863, 79.02797615570465, 13.844561944456737, 82.94024978389241, 25.888199378946776, 57.119835740346495, 94.65287739944151, 5.640487672892614, 6.100472025989742, 82.03879754360896, ...])
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)