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 = 45469
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);
([4389640.625, 4475682.8125, 4543843.084084018, 4568961.327767099, 4591120.978378081, 4654979.6875, 4666057.501439522, 4690711.26659518, 4700573.420661582, 4708716.001459991, 4737456.913994315, 4823447.270011899, 4871235.458540867, 4908716.410962938, 4949941.822777969, 4960548.697537271, 4961407.379743129, 4990754.589143628, 4990765.625, 4990909.375, 4991674.074640566, 4995039.0625, 5004806.92892541, 5032957.386929834, 5039742.551856011, 5058625.24747672, 5082548.521889608, 5082589.082913356, 5098183.514909999, 5098244.702027627, 5116070.577052522, 5194501.5625, 5200990.365193269, 5217619.6525352895, 5227581.25, 5237938.65613809, 5242974.153895971, 5247820.309325549, 5249098.4375, 5249285.2419619365, 5249285.285513556, 5249296.580567807, 5263314.887519594, 5281916.2891382575, 5281921.746218267, 5285720.3125, 5285727.299042005, 5289365.625, 5289374.48298195, 5290160.9375, 5295431.211942514, 5307778.973928825, 5309023.327905589, 5312602.675259864, 5315560.10275841, 5315846.066843237, 5336568.417834349, 5355373.4375, 5365096.1990725575, 5387440.575825546, 5388815.625, 5391196.875, 5391207.8125, 5391706.25, 5393617.865070009, 5394058.841908323, 5394741.430767107, 5414002.48597994, 5435753.33072533, 5458464.566973324, 5465915.625, 5479026.204758221, 5480878.125, 5481702.5278630685, 5481710.119795246, 5535596.2297764495, 5538297.111177837, 5541518.726294388, 5544886.7487740815, 5552098.421914048, 5579609.268734479, 5590693.399011121, 5615734.885679758, 5627736.368786156, 5631637.113485667, 5653783.4618417425, 5655973.91004357, 5656073.174065044, 5656881.25, 5658552.796955292, 5662312.1772233825, 5670510.9375, 5671780.4582373, 5673521.875, 5701162.5, 5706511.907758099, 5708159.523047964, 5709699.293531366, 5719724.335219801, 5721213.842578191, 5724982.319304794, 5724983.754266996, 5725285.9375, 5729047.309551809, 5739713.126365072, 5762370.3125, 5764373.370266431, 5764456.569329076, 5766023.784670692, 5768452.463477968, 5768505.813404159, 5772344.263436541, 5774933.331673772, 5783361.496635535, 5789673.2182632955, 5793457.7738563, 5794591.247050033, 5804378.84318776, 5834260.726393474, 5855984.5116545325, 5856857.118568684, 5857025.454080784, 5923631.549153418, 5925311.458309518, 5928653.1716354005, 5957050.573499432, 5974257.324865381, 5986000.0, 5986011.2789036855, 5988300.151215525, 5989755.096054083, 5991213.738541742, 5994305.890211303, 5995470.238578631, 6003708.221280995, 6012647.553096419, 6022884.375, 6024764.542593486, 6031008.644173375, 6044290.651032318, 6048948.596628331, 6051278.489014641, 6052080.725545774, 6062292.1875, 6065562.539559066, 6069642.99665572, 6076339.0625, 6100550.755504351, 6102198.259651231, 6210176.826494137, 6211682.498113296, 6212610.9375, 6260788.401534509, 6268142.653403483, 6289596.875, 6305203.190896685, 6322333.710231952, 6325016.576980233, 6334387.204308471, 6350778.965932601, 6457360.470405187, 6470730.334864809, 6499279.44756981, 6518041.359029303, 6550968.356373273, 6801931.944508803, 6813395.553214333, 6816973.095910592, 6844735.9375, 6849923.754322173, 6879612.970778475, 6897529.6875, 6917104.6875, 6996189.0625, 7034186.2795751775, 7034963.031123914, 7042557.856747253, 7129441.454364299, 7187646.68637882, 7187681.608462331, 7187982.8125, 7188712.962129411, 7190095.337867462, 7191683.4345327355, 7192670.905999577, 7193434.139548989, 7194289.0625, 7197323.4375, 7223964.492449682, 7229109.375, 7229477.839044743, 7229482.8125, 7230906.762725727, 7231420.001217392, 7231970.9206539495, 7232013.836342687, 7232330.5686315335, 7232341.108799827, 7233250.0, 7233297.080225229, 7234380.933091696, 7234594.183585674, 7234675.679937519, 7235368.75, 7236702.676597549, 7236716.101953561, 7245645.540655579, 7254893.0445004, 7284954.897521121, 7294839.286652906, 7297088.879949836, 7320969.390712495, 7342299.826011281, 7342745.3125, 7343723.52341405, 7343798.034400203, 7347135.168716113, 7352335.085208803, 7354686.579204435, 7355086.856900144, 7356516.402175634, 7371493.483552729, 7382657.390448688, 7397229.6875, 7398748.377411344, 7399120.98735776, 7399953.688847409, 7400465.625, 7400931.25, 7413620.044336052, 7433956.509858481, 7433969.646359172, 7441618.762068863, 7474234.375, 7484335.888617819, 7484621.875, 7486802.072639427, 7499945.028096287, 7501697.83420089, 7508035.666661402, 7508251.4439839795, 7528586.241651456, 7537082.8125, 7542715.651241762, 7542734.040922593, 7544980.797274416, 7553025.641503251, 7578088.276295972, 7578904.6875, 7585960.9375, 7589375.9082144685, 7589410.9009234635, 7590134.081239167, 7590451.182442565, 7590467.104956886, 7591775.0, 7591951.731751415, 7594701.958859848, 7602583.999063498, 7603721.856382397, 7605315.635915407, 7611471.875, 7611670.3125, 7614620.3125, 7623279.6875, 7623954.5403501, 7627542.1875, 7627728.622751171, 7634312.112912057, 7635031.591877277, 7637642.058258591, 7637647.865045196, 7639252.385685269, 7643713.5139555875, 7644655.5779222185, 7645905.364967068, 7647212.16011214, 7648859.532496938, 7650381.208161432, 7652788.799337561, 7653322.49587355, 7653574.285635759, 7656570.3125, 7671891.677056959, 7672168.75, 7672344.238688608, 7672652.004010167, 7674515.625, 7675054.6875, 7675055.809533706, 7676398.13990594, 7676542.879657656, 7676545.983486496, 7676643.356028093, 7676845.1814322565, 7677812.84964832, 7679147.726668791, 7703090.87866277, 7705604.5697694905, 7711641.5989480885, 7714066.853266368, 7719845.2384057585, 7720701.5625, 7722745.858911664, 7724275.107072739, 7729031.36733567, 7731218.623305401, 7736181.063701062, 7739563.030071924, 7747210.9375, 7747405.05742187, 7748564.582285515, 7748743.245247926, 7748977.496476135, 7750078.367587857, 7750245.3125, 7750440.625, 7750707.184311815, 7750856.25, 7752450.0, 7753061.171918027, 7753100.450914994, 7753248.4375, 7754396.875, 7754588.613781477, 7754607.8125, 7754871.3359037535, 7754910.742297682, 7755763.755689601, 7756004.1300000455, 7756175.0, 7756643.618776319, 7756851.847231678, 7756929.6875, 7757149.99169496, 7758418.75, 7758446.261789202, 7758489.0625, 7758546.875, 7759284.534845694, 7759685.9375, 7759805.9812986525, 7760717.840660086, 7761310.331418896, 7761353.072594893, 7762537.8286402235, 7763846.964723356, 7763977.77729067, 7765689.441168108, 7769610.9375, 7794065.625, 7796305.363472566, 7797587.5, 7798560.301674853, 7802365.440915215, 7802728.125, 7803097.641178338, 7813000.426509306, 7813575.811052327, 7814826.748936308, 7816443.0941182645, 7817021.875, 7819819.606445399, 7819985.9375, 7820034.375, 7823021.707319076, 7834477.827786832, 7835393.079065192, 7837914.0625, 7838457.775582233, 7838478.125, 7841484.375, 7841497.371196724, 7843410.9375, 7845686.590539292, 7846095.300969126, 7847147.704522872, 7849250.0, 7851077.247747194, 7851499.44987528, 7851989.239538956, 7852289.323852244, 7852325.685089746, 7852368.659315139, 7855122.415995678, 7855257.8125, 7856728.125, 7856735.9375, 7857330.1725288285, 7858498.43489215, 7859760.623773478, 7860282.498188883, 7860826.5086646825, 7863129.130063758, 7863661.514964399, 7869633.8714371305, 7869838.370685284, 7870042.1875, 7870184.912076619, 7870250.663541263, 7870292.886122798, 7870663.007912161, 7870672.980222534, 7871391.897805127, 7871512.5, 7871658.136842134, 7872009.375, 7872069.168563055, 7874543.973608468, 7877821.875, 7877857.11876352, 7878331.25, 7879093.367957695, 7885746.800411886, 7888099.652273307, 7888228.079157135, 7888489.0625, 7888492.577397735, 7888651.444731258, 7889121.875, 7889166.230930289, 7889206.178702815, 7889288.070617876, 7889387.5, 7889728.297434725, 7889775.0, 7889854.455078821, 7890068.639833927, 7890515.329414173, 7890549.198043951, 7890687.571310293, 7892163.278724491, 7892820.3125, 7893120.3125, 7893612.013762249, 7894818.75, 7894841.369281691, 7895068.156303659, 7895825.7303460315, 7896525.0, 7896547.1850189995, 7898704.6516973125, 7900245.3125, 7902133.451094716, 7905581.7264990555, 7910464.662680787, 7911104.6875, 7913350.457529907, 7913604.749140526, 7914452.444140734, 7916385.967281618, 7917382.2976986775, 7917422.175632744, 7918226.5625, 7919004.497367726, 7919279.684678575, 7919815.368590222, 7920631.730285194, 7921129.318665599, 7923373.6649593925, 7923550.0, 7924798.4375, 7925242.075332047, 7931850.455108259, 7936566.229765094, 7938015.625, 7938052.9689329425, 7939354.6875, 7940843.3463576855, 7941258.401632567, 7941317.886136836, 7941378.125, 7941418.069667323, 7943493.218433226, 7944719.867958274, 7948399.500615245, 7948620.3125, 7949111.282873487, 7949606.736957877, 7951014.283916971, 7951683.204373647, 7951845.987986363, 7952038.265852225, 7952621.875, 7953511.823350202, 7954160.9375, 7954705.691490293, 7957743.356268831, 7957796.730695689, 7960042.1875, 7960187.5, 7961037.5, 7961599.829776969, 7961610.058516011, 7961964.0625, 7962013.229136954, 7962023.128977413, 7962042.952769685, 7962196.149603769, 7962344.844082658, 7962361.072628348, 7962892.1875, 7962991.024148195, 7964050.757773685, 7964072.653292626, 7964088.594879111, 7967741.146270646, 7968180.244225474, 7980613.252782537, 7984068.7101868605, 7985231.941685334, 7987100.216017378, 7989462.231610007, 7989972.280420932, 7989978.5233031, 7990038.043948057, 7991565.625, 7993242.1875, 7993432.926165188, 7994181.4916844135, 7994316.381683397, 7994405.029836088, 7994464.062303155, 7994520.204538801, 7994793.75, 7994797.183684543, 7995162.5, 7995475.0, 7996746.4146599015, 7996862.5, 8000703.493756055, 8000715.819911507, 8000980.699664293, 8003905.708929104, 8004881.25, 8006074.914328438, 8010338.917753935, 8011549.143193641, 8016806.678089619, 8027613.105833009, 8028650.0, 8030409.720423965, 8032667.087659544, 8032745.142114362, 8032864.588578428, 8033106.065941033, 8033450.615669577, 8033985.280779378, 8034001.903718921, 8034020.133719459, 8034250.723743462, 8034268.9367574435, 8034339.606566464, 8034453.125, 8034462.662220738, 8034496.177108894, 8034838.5580433095, 8034864.0625, 8034964.0625, 8035168.883915487, 8035271.611536982, 8035373.4375, 8035479.6875, 8035615.889385601, 8035620.001503609, 8035632.68360025, 8035994.765945993, 8036143.75, 8036154.567750572, 8036222.400010459, 8036703.6948588155, 8036841.5799725065, 8037029.272782333, 8037274.556688277, 8037315.625, 8037930.423235701, 8038180.751000731, 8040965.625, 8042034.375, 8042093.05865667, 8042189.0625, 8071864.0625, 8072939.0625, 8074768.75, 8078612.705601422, 8080479.6875, 8080874.6597836055, 8081506.25, 8081589.525314105, 8082636.924553777, 8083713.734663586, 8084023.712908613, 8084175.0, 8085515.625, 8086029.6446710415, 8086496.49834282, 8086768.274092173, 8086996.285143871, 8087667.1875, 8088269.845623528, 8092027.676915765, 8093537.5, 8105015.543835881, 8110346.766116745, 8112458.856731728, 8114606.155875952, 8115064.0625, 8128610.024724329, 8129178.331946492, 8129850.0, 8129851.093343973, 8132350.0, 8132429.6875, 8145832.320842009, 8148210.56610058, 8151401.2052775435, 8152587.687757387, 8153509.871368095, 8154453.05790637, 8156524.687720689, 8157294.059460098, 8157392.482174061, 8158967.076356187, 8158973.4375, 8159658.784514776, 8159724.902000899, 8160468.96136811, 8160628.125, 8161177.58342915, 8163577.954757197, 8163624.254378346, 8170136.668351611, 8170154.697920787, 8175515.381803362, 8176331.478224159, 8176346.65253669, 8176375.0, 8177075.040348873, 8177385.518238868, 8185541.2784154285, 8185678.125, 8187094.554928348, 8187136.859294199, 8188493.292808005, 8190404.6875, 8190457.8125, 8193799.829186149, 8193961.908279182, 8195400.0, 8195879.6875, 8196840.187852519, 8196843.9632122135, 8197721.559286517, 8201846.866328681, 8203739.770145149, 8204337.5, 8205133.452182114, 8205155.5631583445, 8205291.645054006, 8205560.606948459, 8205734.375, 8207690.625, 8208309.342324945, 8208316.0033498155, 8208327.311755794, 8208463.347687547, 8214007.376138689, 8215885.161532958, 8215922.598719369, 8230896.207610635, 8230913.608407501, 8232364.584178031, 8232503.125, 8245549.958159141, 8247398.041751189, 8249829.676602875, 8251287.5, 8255440.138277262, 8259976.299027434, 8260277.71527197, 8265530.864388351, 8270400.0, 8270685.026851684, 8271217.1875, 8272410.9375, 8284662.5, 8290743.363028647, 8291820.224573052, 8292237.5, 8293211.167927741, 8293252.614377276, 8293652.285751545, 8293744.6977906525, 8295203.861867485, 8296500.162953779, 8300556.25, 8303388.598264157, 8304411.525594161, 8305104.134578498, 8305418.75, 8305692.88197683, 8306510.639612111, 8306573.329750888, 8321081.110749299, 8326606.25, 8327407.728186796, 8327466.587862479, 8329826.4201180115, 8329856.25, 8332796.875, 8339515.625, 8341903.319097135, 8349914.0625, 8350084.375, 8354099.894491809, 8360160.698128858, 8360460.210885467, 8361171.875, 8362819.977839973, 8372210.00731931, 8372252.918461909, 8376237.5, 8377485.408195675, 8378743.536686754, 8379017.058743727, 8380059.182233053, 8380097.443632279, 8380211.537399302, 8380396.366888785, 8380544.880787448, 8382610.930240449, 8383236.830379929, 8383497.491307224, 8404791.896852152, 8406771.126327692, 8425583.632810628, 8429670.3125, 8436851.134053467, 8438351.996750046, 8441075.625125593, 8442150.0, 8442840.57774622, 8443080.200268514, 8443966.382944206, 8447785.870395029, 8448176.5625, 8450431.03828714, 8451871.668428889, 8453700.063457666, 8459296.787009295, 8460424.269801406, 8465158.74533213, 8465671.875, 8465892.1875, 8466281.568303298, 8466724.778485753, 8468843.560980925, 8469274.746295588, 8469433.931447353, 8469503.99717473, 8477192.289322818, 8479728.641482055, 8484629.371171677, 8490781.25, 8493155.38571196, 8493520.931795057, 8493740.568392662, 8493779.611123417, 8498263.220827809, 8499420.3125, 8499748.4375, 8505214.0625, 8509420.283843402, 8528564.0625, 8531051.5625, 8532026.21361476, 8532665.177242529, 8533081.050351782, 8535339.18293941, 8536887.129300037, 8537079.086715978, 8541371.544364579, 8541724.74027905, 8542932.802075792, 8544902.603472825, 8546615.625, 8546922.241841767, 8546998.4375, 8547024.4173985, 8548416.224006847, 8548448.759514904, 8548966.40653368, 8551330.554683553, 8551655.63021199, 8551657.459460486, 8551726.558166346, 8551781.125425369, 8552534.375, 8552688.311964974, 8558584.375, 8563812.27477724, 8576791.7461859, 8589616.623222934, 8590852.397531142, 8591295.218766691, 8592248.141224755, 8592492.1875, 8593396.875128906, 8594851.750347517, 8595279.6875, 8595335.9375, 8595354.721362526, 8595727.778364094, 8596248.787387744, 8601990.796734447, 8602599.790778223, 8617898.626000296, 8619418.26532886, 8627744.582501933, 8629295.3125, 8633828.125, 8638245.3125, 8640287.270179747, 8640802.08570968, 8640802.356560312, 8645118.270195886, 8646650.0, 8646673.079613619, 8657991.733487269, 8658635.380064398, 8659631.25, 8662843.75, 8663516.156424569, 8663640.48324017, 8664441.985154655, 8664857.178794442, 8665278.262525298, 8665829.688744871, 8665956.55124589, 8667798.329185853, 8667840.447895931, 8670643.75, 8684040.625, 8685804.316060007, 8686507.555321159, 8686624.852552086, 8686746.875, 8687211.69444171, 8687766.991590912, 8688346.875, 8688360.9375, 8688364.415666867, 8689513.14761737, 8689935.9375, 8692014.258916214, 8693173.379234724, 8693339.676691428, 8693927.599376312, 8694378.106616115, 8694858.167720344, 8695017.95806759, 8698308.934744604, 8705651.970399614, 8709962.265518904, 8710829.6875, 8711543.75, 8712042.1875, 8712085.9375, 8716684.248887716, 8717022.86801082, 8718372.950182302, 8718838.863707772, 8720847.099379465, 8721364.0625, 8722515.076779116, 8723070.665415222, 8724303.865735993, 8725060.9375, 8725775.65043942, 8726815.324949536, 8728276.311386526, 8731256.066088917, 8731754.6875, 8731762.681794446, 8733589.934464674, 8734556.804322273, 8739374.932195317, 8755346.875, 8756826.5625, 8760340.232365599, 8768879.434961211, 8768952.92812782, 8770408.686086658, 8771112.5, 8771397.159052001, 8772137.755632782, 8772245.776515903, 8773781.25, 8775752.338522637, 8775776.5625, 8776012.5, 8776711.107768811, 8776874.517510163, 8777496.875, 8781192.1875, 8793182.137152832, 8794139.168833576, 8794158.982005117, 8815996.99805552, 8818007.8125, 8818743.75, 8819201.156785822, 8820187.5, 8820620.597491471, 8823075.95063051, 8823080.980101991, 8827761.239154298, 8839873.091851424, 8841996.676316611, 8852019.144890128, 8854496.413184946, 8855384.613568082, 8856802.018977901, 8858787.5, 8859323.630308297, 8881765.625, 8882898.236335242, 8883477.917844303, 8892304.834979787, 8900000.0, 8902658.884373825, 8923385.9375, 8926095.919748312, 8934684.977074321, 8969815.173492614, 8980581.06108464, 8980914.627577063, 8985014.352685865, 8990751.061232757, 8997203.819458406, 9016098.306474498, 9019656.067106418, 9035296.43268895, 9049628.791743651, 9050717.978974681, 9055078.6004882, 9057700.692531321, 9058228.187361088, 9061433.320256447, 9061809.375, 9070601.186036317, 9070882.357699811, 9071331.25, 9071344.98586702, 9079860.86762185, 9092300.0, 9099575.660922006, 9099634.873581303, 9137253.125, 9139618.502628677, 9148344.787658093, 9148369.843847334, 9159593.370027365, 9170344.604629526, 9183112.5, 9184646.914079921, 9185867.90215353, 9191982.8125, 9205332.8125, 9207868.286894161, 9254620.635153024, 9255599.064072326, 9260996.875, 9269225.0, 9433333.9817471, 9483612.5, 9526911.742928276, 9556560.059676562, 9557409.252948303, 9647277.076514388, 9672459.027144054, 9786801.5625, 9789956.131183643, 9811607.79114651, 9815795.3125, 9842539.0625, 9844453.125, 9847085.591312263, 9860635.421616273, 9892628.73348075, 9893091.450301623, 9898203.125, 9918034.375, 9927746.374855815, 9955579.1563583, 9959290.230432335, 9959545.024219625, 9965115.625, 9965170.259803277, 9966174.23769934, ...], [63.52741669642774, 57.34758186725378, 19.98361877224261, 16.67170915174254, 46.68090579613951, 88.42620914703, 19.494475920621152, 96.33918254873991, 19.055328733887684, 9.671387548321837, 18.265618765492793, 80.77010407615269, 33.00878402442859, 47.95868637622986, 50.23996371492012, 11.560036321503947, 17.384690237347925, 14.57942073329473, 73.2364908621488, 57.90038382740751, 26.68593220490107, 65.24785282182138, 12.385443150093545, 22.26916253992543, 59.09187443960673, 6.298979921756498, 13.548550450214677, 30.68835724149486, 114.55616225946206, 5.668977061290494, 16.746170838850762, 48.7102392568478, 5.795003674816309, 12.908298991292893, 62.44967319824924, 46.58017182968558, 7.323427396498298, 28.462452205511603, 52.647518055862, 43.273967736233224, 7.383301052408796, 9.094263515431187, 59.61596467956417, 6.159998500855343, 26.215476353981877, 50.09297591303243, 18.759565058267203, 39.26247331389019, 21.324999451282892, 50.07219274097414, 27.793428013949715, 10.169687267071373, 32.9463108285272, 26.149682565902104, 82.24642408098434, 8.730295340116376, 6.436252198831767, 71.73134365244742, 46.334786914130106, 11.05170415164226, 35.80063049220928, 36.01815154248722, 92.8764404460594, 78.58286378284683, 12.382468296809519, 14.259060747485933, 55.37046816392203, 7.387386040020888, 170.2741692204614, 23.784516790977193, 73.47146495781561, 38.17356470718693, 93.02959300523617, 140.63867637901973, 55.07860026587909, 12.945164408038519, 39.389456059822564, 158.84364671389315, 57.231402161141894, 5.938049355312671, 6.742475312442032, 23.120570326682326, 5.558389620556067, 118.7432327451111, 22.70515745154423, 12.321008473685804, 36.37420806813806, 80.62429357790606, 56.58939595836347, 82.97615104186488, 67.14803245966874, 76.8410449641251, 15.569965397298658, 74.83107400049762, 60.99977472186464, 73.82030142403286, 6.793427562073198, 6.017589838308137, 15.479093306976782, 7.064816500348304, 95.21999518408374, 7.393165928708897, 50.71629415748546, 20.13344653456645, 13.693008506452431, 48.162635864931886, 83.79936084745079, 7.208002185476661, 13.213081555466909, 55.03401513475108, 127.70787988709392, 9.80686745026929, 13.443679660812945, 33.705498073464625, 55.03322504548811, 6.75581609859193, 8.645409304742133, 8.70676581594313, 42.09076816580833, 31.574346949520752, 55.48790695995582, 6.136627786028904, 8.451374437966402, 39.711444768516884, 7.133764884401879, 5.646579430751732, 11.423285865221239, 55.19995632969585, 8.475763887737404, 7.658860974779668, 16.766735479762882, 20.394283212656276, 28.77182804935501, 67.45802949430879, 8.515262066121492, 7.311891138116661, 67.55462731162727, 70.31690266723346, 19.462949842050016, 129.8664158285369, 99.38741176862587, 16.537803534024775, 13.259566947382934, 52.776874011936705, 35.74570067916618, 19.290331408633755, 134.14040875905357, 18.89450052962454, 25.447414305552535, 38.20229933768379, 25.208402710429592, 88.92087527459337, 79.51993871623137, 47.57735818743654, 42.56910303732645, 128.5052746447413, 27.671642142554767, 186.3591599021537, 52.67967043200605, 58.447325965154796, 22.381994336679323, 18.15712475414405, 67.78222196199177, 6.6086608608396435, 37.13252809640207, 6.601766494878785, 84.1903863101083, 8.113838306154081, 121.48393981415938, 95.15496208641437, 49.45445427054584, 41.7759522928854, 50.440966443098986, 28.816312354741353, 11.70808591781833, 12.399145574698544, 14.909760129481137, 34.26419073604798, 14.268217186722326, 51.06631146693395, 123.81677041247922, 30.780951982519717, 73.61808743243424, 18.6672333784082, 17.81701589479393, 116.09066714135494, 33.09036702916829, 96.18364438017342, 16.879790863630245, 32.3298231121358, 23.931817057326388, 28.995756007823676, 36.433752974751926, 52.499133437350096, 57.53814008892098, 14.144302233369277, 19.85644511457626, 7.254713105448755, 29.867080385432523, 18.039120476896173, 63.942309831310354, 74.46450306152684, 12.387665976080212, 53.40813238137116, 22.023732625590736, 9.770115330281309, 120.4422351798579, 10.179010126576157, 11.472657407367862, 11.497130839168646, 25.37664336342987, 28.198650559475794, 9.188494937553331, 44.87986480722519, 128.550989898313, 22.517444270419066, 94.05174222935077, 35.50226389462177, 33.48836199945531, 10.252101565481928, 81.46967364335036, 14.014691486222073, 68.83817789206003, 55.20451004047104, 57.4686221327171, 12.376522012505646, 9.858476009760336, 53.52075671857552, 52.67761785916914, 82.7935286553432, 16.03400072432217, 19.562314623697038, 11.14662375821955, 49.42737670516976, 9.290409742529775, 50.998143134615354, 108.29660700421509, 81.85189194926875, 47.565426079086855, 24.13052495019845, 149.4379443852771, 16.931802958087736, 29.9301199111265, 144.14649225173866, 23.324995689476783, 74.14832937602785, 31.55796544122119, 19.045384997973585, 76.41892496836098, 55.212392612548015, 7.968445334578314, 37.183020735804234, 57.354094379253254, 9.029468449327494, 6.07955731649008, 30.594429159862504, 131.0075611582114, 8.50792392250125, 65.00135245479817, 127.31445054196712, 147.86954168937658, 65.0172146650399, 78.14237919419888, 101.40153140448663, 95.68446576032962, 25.92149675891735, 93.0249520628069, 101.8385326522322, 50.302023939198385, 22.76393295432655, 26.208021658146983, 20.799542989605108, 82.89088513721762, 13.195031937097339, 66.42409539465373, 18.35477456231591, 50.41090938060664, 19.758957380136806, 27.72313260177611, 104.52925982433183, 7.84437231702097, 19.591692323305114, 87.76624047056058, 8.033912023247868, 84.0210065758478, 131.45976526725863, 11.895873787314407, 35.03276438856066, 45.69370321666378, 22.108274995250852, 6.230317684772917, 28.88650966338068, 6.160770644855315, 7.466700222479894, 55.35532612636092, 24.095319730908425, 12.783478739495411, 16.00533991439783, 26.396239575453876, 25.231007536093202, 32.42967489232514, 9.269528385991634, 40.41504485854319, 14.204789966606056, 107.71552707908977, 24.64542831237702, 10.935285898997977, 76.59537136573434, 17.43738528487581, 117.21689648851473, 11.75972863148504, 269.6234115178686, 79.70219652106437, 28.700351189256047, 11.529309945670484, 56.87379037311484, 76.85595786016927, 47.69196853198223, 46.49560898199395, 194.6210670543579, 7.690281743400322, 112.90186362066021, 37.89004972595083, 56.524281312840785, 17.156005608751478, 91.51986403225368, 123.07990782342581, 38.3371439904762, 11.11223766459487, 13.171278380800675, 57.7918704850129, 14.463872696463673, 17.279097893929226, 31.2830503062079, 6.485790130637294, 106.77567426236187, 129.13473865614617, 74.53802879591699, 53.018321415716976, 6.104881008669254, 35.453723545524056, 124.65888712143699, 118.39699514737725, 33.48066471300211, 27.528901747856363, 51.87432399781216, 6.0974796200958785, 108.75849538070233, 16.61218563926551, 37.50067562188034, 62.008964899831575, 91.80020018709837, 71.63233058931324, 60.863820861503854, 16.245560140926322, 102.73640196560731, 25.524092761700736, 9.7201048941472, 170.04653766576627, 5.348351019840956, 27.799617744327243, 31.10564897838593, 222.71383077471683, 199.46757896862687, 35.255413777536276, 51.02266658682089, 86.9352206026599, 19.942085999313896, 34.76840253859735, 68.09156566732496, 118.38014972923416, 35.42627715011943, 12.003287843641179, 45.133959135770624, 163.29627153560273, 97.62793957632685, 149.97889643740413, 80.25977107682644, 79.65982652025224, 8.905869498074392, 91.67822090137622, 8.429795604139786, 18.405724928081845, 6.472968930077218, 76.13664692608869, 44.39950807592863, 65.994346016337, 40.78885639803863, 89.17116502998891, 8.285198732486306, 159.69003876847302, 59.08062719176969, 33.106229909268436, 23.738090769878596, 32.545265019575396, 21.457632188831194, 19.771637390616245, 64.71242990109312, 34.77833050421707, 58.44435124406555, 492.56584038322865, 17.30974435856757, 13.444596011852946, 23.883273984353348, 83.92275076771375, 16.34087366859119, 139.37371419241305, 8.521059291572827, 61.70624009644086, 115.98482040464478, 21.423814673294867, 73.45318893357562, 5.682867696061117, 22.98217552585352, 6.433929401502332, 80.87828025190079, 182.19402701157085, 32.7507082730972, 55.819561177154256, 169.17160449451043, 57.468746763160624, 52.403667455572126, 12.154464445156334, 37.831978224349356, 88.66558428040918, 35.615164098809316, 5.521905741536778, 34.036357698081, 32.136326208974516, 18.93078789647732, 53.648097234940934, 41.24261386985459, 143.32931054623478, 120.48231092992849, 26.832210928042464, 82.5045670674089, 8.72372200902158, 96.19068579610979, 122.3441356932782, 56.57396882970944, 11.649519162876707, 27.835549243636425, 28.824138650989976, 141.16986297415153, 12.327955521153315, 26.301022724196674, 63.37848115461507, 11.92702640302152, 6.49679753092043, 95.14064638472198, 7.614044819611052, 8.931002686087362, 5.630895219930805, 44.93360392152886, 5.800044783484128, 28.469418042900315, 43.23642645225998, 9.773451039585, 7.475070252332028, 122.17095661331426, 38.994471092517486, 57.47423228860723, 48.85792357878365, 58.83727473205335, 30.289953625303063, 161.90006941275024, 19.499715514443004, 90.61155395479591, 37.266095766452494, 30.570564973642846, 10.001374236055243, 46.69144409228703, 23.09814459834358, 29.1359551284269, 174.2242617922631, 21.49923982781353, 88.31161998684689, 37.861297991780866, 17.1913140441728, 8.407243006500757, 25.91499688134953, 8.679298820267128, 211.258741608461, 88.2111583213941, 19.895059878744, 42.57603398413993, 88.75478120060502, 37.51989658342857, 37.27727483762732, 41.05883797808874, 45.52736172016709, 52.68926378287432, 55.48714496749814, 51.913731446419774, 38.15348664249553, 18.707547633632025, 10.677438924181583, 12.579595713908871, 39.11669683895224, 7.003532394900836, 97.29770030924686, 40.03210260145546, 21.044170230106232, 94.71487493440753, 187.9237097568601, 8.965006806010487, 73.67265294854013, 43.21670886427495, 24.073635792460834, 7.588901143084818, 25.003760325884954, 11.483021266946299, 67.13884411353575, 18.948961346117862, 8.509070252576239, 6.877187932242822, 73.47286912007036, 64.23334113857867, 50.74972689282401, 15.950325471162834, 18.902974008515624, 16.429400073910884, 96.19503805857157, 6.470299501639442, 113.26603224406531, 104.41443928285575, 39.20175360134654, 43.70345033202064, 121.23789082440159, 39.70293453713506, 17.112008598175716, 15.740383596264156, 35.27722820721968, 5.673166900172168, 49.943048876576306, 14.624723624948873, 25.959519667698316, 179.26107826423626, 16.869880637426547, 82.51820986896126, 55.22999102482582, 40.90960366360209, 173.14771309942068, 25.56074114934868, 12.079485346045129, 25.354031539815473, 17.954951127063293, 21.36125026849328, 23.033311976073378, 78.14936388487067, 85.53949748411722, 15.704558292997207, 110.75169454670547, 41.40147532924679, 199.17849147336224, 10.187825441721197, 27.486433683159298, 72.71719094031091, 29.219060452047568, 15.477741289065005, 24.22894675022227, 89.82807309997229, 50.90851799852119, 51.763290995257876, 7.042031425248775, 61.28303568711686, 49.548371635452426, 36.95973732335581, 124.55342258327548, 9.818630852043379, 26.52810212012958, 91.09532033354412, 12.538644671223404, 55.61228484124216, 156.68411929959638, 97.71452360550606, 10.428088394322845, 30.37489221936904, 83.1344805520764, 29.659275901879425, 57.23917201165466, 133.6236619893337, 54.25874944568514, 93.50656569834933, 15.787693763771717, 67.8261498764075, 162.18914809290297, 73.49864493559375, 11.937358653227212, 8.888021365390207, 197.22387173671044, 9.575664430092363, 79.47061487353336, 37.91457615820375, 62.618965302848494, 45.98732961544901, 21.736846928575094, 45.68977348669149, 39.44103319927925, 21.830013778602517, 85.60580696317587, 30.2643396577248, 64.0088470445602, 38.9439063843081, 21.31277980677721, 111.73927713817602, 29.191791615531557, 18.17241570176104, 15.79367443649934, 79.06100400763181, 16.898891269251983, 176.35710172552237, 180.72338113298815, 21.576721818123378, 140.12084474023106, 83.4744498422055, 8.388426575796178, 17.244230542980205, 39.7288704625786, 6.439228132365524, 29.98361585176341, 7.713410562278733, 26.505404865600575, 53.278906265643954, 10.315167519429965, 25.333997599172804, 9.516758933162276, 64.02725060334573, 21.088195696510535, 25.5629219539267, 10.132959984139696, 40.24963180164371, 14.981377901615636, 19.2095894564926, 51.881374988438104, 24.794408124130044, 88.40053478079943, 7.6178966652256115, 52.24643259941675, 27.395138258111736, 62.096794539192565, 15.931425829844047, 29.957543132681728, 13.444836316255545, 131.19921357469187, 39.671342381226275, 24.908692701251432, 8.87662346262098, 56.995198813499066, 50.23424157758525, 47.64677611644328, 11.478169109519996, 23.55207760057861, 28.354505684694796, 321.2849840501282, 60.787614090513735, 168.8571126094571, 12.841890148359916, 18.337478519075155, 23.368178060704093, 35.444280387000724, 49.63005968296271, 67.15096591126346, 98.78267283316626, 24.625713073998067, 53.57794942200432, 19.205405167757984, 207.5393710455499, 199.15908777609906, 12.889850357150076, 43.01995597220369, 17.388741791329238, 180.2962959888976, 27.72309014361537, 13.620931305483452, 28.311069972442805, 86.5825236952152, 193.99328822135416, 167.3204848194647, 77.23955779025913, 10.57410372718459, 40.1643591457234, 6.158614817549961, 38.529699941090755, 40.11045824592024, 46.28606775083069, 32.272863109404014, 27.16664885704038, 52.928710409844705, 6.810398454939516, 73.27224078932963, 5.7543874895122835, 13.022492428192077, 124.16521387480631, 45.60307791570829, 97.5005702902243, 13.798027331115307, 89.82722927710032, 158.07434666672555, 49.73840023305523, 84.74612173392748, 66.04078193462041, 84.03483317380667, 104.00232769356664, 104.74906458499093, 88.30296775775057, 10.304100788114383, 47.01758739772723, 32.973358273661965, 106.58925530171663, 122.23330258651868, 9.501098901198006, 46.766578732846654, 53.17370123639661, 26.59966875368965, 14.101413125253147, 19.495682790901075, 82.61859744768422, 5.910781717040329, 6.896670205224262, 9.162663172351522, 103.8692615015413, 21.20567135540812, 254.08063428768236, 26.215889400893197, 25.22447243431416, 17.66558626497121, 12.215592839204385, 13.303886085933836, 22.202469285001488, 69.35131930401789, 19.952944647683637, 27.500942405491408, 23.870942061006474, 6.937637454323881, 8.773885400214654, 42.45221725475865, 109.24534112751482, 16.902762852418064, 321.13751525484616, 35.982142503018956, 81.11033694521906, 37.47460117092906, 34.91261118537163, 67.78927028235347, 52.03460906845002, 24.94803630624784, 22.860086492096887, 7.626351626503201, 26.897860958119306, 6.625987763431392, 12.984412241414484, 51.41451548690254, 136.8899824974222, 27.91646553479405, 69.0820404662335, 25.280037730725542, 24.360682493392748, 108.42119413417139, 98.81483742064616, 28.382077873491035, 79.93508129148182, 8.126093654867026, 44.25503121840262, 295.9566432262146, 68.20139839088773, 80.32805980172587, 27.10000594113991, 38.26935880502205, 200.94753424345288, 107.7510745917933, 29.176114393490092, 86.26494302779702, 28.556935978584658, 68.29023499974022, 9.052852027324606, 13.471440118623256, 38.675591551303874, 146.65889816059027, 176.5113281379112, 13.058245035770259, 6.699245435935797, 22.547581509010357, 103.3742669782618, 55.94159575015177, 121.72503051078795, 11.753980907244532, 28.804566543486576, 13.10537322939354, 14.170849143749503, 30.477080185698313, 19.58910904120347, 54.53976278697018, 20.375958791829397, 26.482960492123865, 54.62037781124545, 26.283940961119967, 94.6038317556409, 30.132734047715793, 157.47221882896733, 24.75534313677959, 22.099204956626718, 135.2067766873672, 52.54152339127056, 13.422692512464579, 10.694172067231987, 35.37456928753671, 11.127908296345508, 116.60674640111463, 156.39398725016684, 121.57480790472147, 6.492412611709419, 170.41397281343237, 127.61408069394315, 15.6391399471617, 24.983964708886337, 30.81284404050663, 17.816125273510696, 117.06210373985743, 41.098482172283546, 58.90628421748784, 58.61910122123601, 154.6387595353063, 19.756416537080018, 8.75643646952227, 5.060273987570512, 217.00659396525177, 45.101638466658194, 59.80402725314623, 8.900701988584084, 138.95474953902024, 169.78449469182206, 14.055081127774189, 5.8035651847795675, 8.182395813052173, 50.07694967478146, 43.83825124134559, 29.557090564557903, 17.043645677982944, 26.552635103661462, 49.237111873770395, 64.24049685199475, 55.023565036198754, 19.78316874772035, 6.447517996687942, 171.91690170652205, 83.30855519635244, 12.560462358953833, 28.46742619722541, 70.53618792770497, 71.62605029657782, 17.978787554208438, 15.607808739023767, 39.25473055773941, 5.95669512160375, 14.723984624315712, 83.18805014151796, 68.17253038502284, 14.871898599121703, 37.38694608793209, 12.591813946970003, 43.75029736885791, 9.701886908403809, 16.933720460061465, 42.373282942205165, 40.05664012665717, 61.38252659251668, 53.886173593484415, 26.258868239634275, 13.139677031635646, 222.3007808446033, 165.19568327408783, 38.7037814267574, 92.08989328092579, 8.907217096932904, 202.3796013214136, 14.48434619423633, 42.575717596136975, 45.69092097383705, 11.463800101746365, 24.3959523383787, 128.6750286890179, 93.8674949924685, 164.88839975291356, 23.528998765912693, 17.57997761008525, 24.93240078388662, 36.18858785743499, 123.00873026623702, 23.13889974300944, 24.376534481208655, 72.60374886585345, 19.795099051828654, 37.618686013134266, 208.1211545163053, 63.13387323753511, 17.064104704656348, 83.79640188592917, 51.89778032651208, 78.96413379873496, 121.4405163908536, 9.479647931327575, 51.41032497425906, 28.82928439611979, 29.00397812542465, 20.089176372281397, 157.21170947411005, 13.628983579329898, 178.92396707550338, 64.08644374254406, 107.35458243760263, 22.48820434974386, 90.33796366699836, 21.826598357395227, 62.468228132823974, 24.143022211918804, 27.10336600180077, 47.84872870825599, 147.64544696958063, 202.59317262602156, 13.431856538779789, 51.376576963581385, 55.09939575029507, 45.316491410582735, 7.674494219684616, 101.72261308530389, 25.10103209667007, 10.8186446324748, 20.587615599287194, 77.17323570990332, 6.038522395061803, 66.30441054463101, 26.36622219691942, 43.41825958893725, 131.55264089753217, 48.208975831100965, 17.644214258701492, 16.176348479388494, 8.940705823609859, 18.468855132313085, 7.556525609804327, 8.192171587500342, 224.05784316047834, 18.28372024649285, 37.220030728746934, 23.122501686675243, 44.09980634306412, 122.34184979168643, 9.801112812764488, 56.432023537687385, 42.46721717972928, 21.956162099952916, 131.5775312095166, 47.51594910608687, 11.020211593382124, 31.39273506861034, 190.77793072632184, 5.259317171875497, 276.2836220244803, 56.9195124754684, 5.894966210631885, 29.85279753842198, 22.780266242886952, 19.643080936107406, 245.06285247767497, 38.70792358672925, 18.606884545864997, 73.26355707055143, 78.32511004415056, 53.229593181256064, 20.244165485498684, 64.62060488199961, 39.34210271761219, 84.10539244567558, 22.62842525533734, 74.7092684174266, 102.43166254883633, 208.3975415837538, 22.21464460295595, 54.577791764080246, 112.56980237965905, 91.11852754370693, 84.294847505662, 43.112016393490194, 79.36175694288956, 66.51696331848085, 29.157661523559067, 23.178157598875902, 5.895704037641897, 26.577766980969628, 30.261398836757714, 60.76295614550732, 81.94572981869808, 86.20325806591165, 23.173641553582463, 105.12451237503844, 23.901606946813903, 98.35488058479899, 7.584288729788007, 40.662201571829264, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4389640.625, 4475682.8125, 4543843.084084018, 4568961.327767099, 4591120.978378081, 4654979.6875, 4666057.501439522, 4690711.26659518, 4700573.420661582, 4708716.001459991, 4737456.913994315, 4823447.270011899, 4871235.458540867, 4908716.410962938, 4949941.822777969, 4960548.697537271, 4961407.379743129, 4990754.589143628, 4990765.625, 4990909.375, 4991674.074640566, 4995039.0625, 5004806.92892541, 5032957.386929834, 5039742.551856011, 5058625.24747672, 5082548.521889608, 5082589.082913356, 5098183.514909999, 5098244.702027627, 5116070.577052522, 5194501.5625, 5200990.365193269, 5217619.6525352895, 5227581.25, 5237938.65613809, 5242974.153895971, 5247820.309325549, 5249098.4375, 5249285.2419619365, 5249285.285513556, 5249296.580567807, 5263314.887519594, 5281916.2891382575, 5281921.746218267, 5285720.3125, 5285727.299042005, 5289365.625, 5289374.48298195, 5290160.9375, 5295431.211942514, 5307778.973928825, 5309023.327905589, 5312602.675259864, 5315560.10275841, 5315846.066843237, 5336568.417834349, 5355373.4375, 5365096.1990725575, 5387440.575825546, 5388815.625, 5391196.875, 5391207.8125, 5391706.25, 5393617.865070009, 5394058.841908323, 5394741.430767107, 5414002.48597994, 5435753.33072533, 5458464.566973324, 5465915.625, 5479026.204758221, 5480878.125, 5481702.5278630685, 5481710.119795246, 5535596.2297764495, 5538297.111177837, 5541518.726294388, 5544886.7487740815, 5552098.421914048, 5579609.268734479, 5590693.399011121, 5615734.885679758, 5627736.368786156, 5631637.113485667, 5653783.4618417425, 5655973.91004357, 5656073.174065044, 5656881.25, 5658552.796955292, 5662312.1772233825, 5670510.9375, 5671780.4582373, 5673521.875, 5701162.5, 5706511.907758099, 5708159.523047964, 5709699.293531366, 5719724.335219801, 5721213.842578191, 5724982.319304794, 5724983.754266996, 5725285.9375, 5729047.309551809, 5739713.126365072, 5762370.3125, 5764373.370266431, 5764456.569329076, 5766023.784670692, 5768452.463477968, 5768505.813404159, 5772344.263436541, 5774933.331673772, 5783361.496635535, 5789673.2182632955, 5793457.7738563, 5794591.247050033, 5804378.84318776, 5834260.726393474, 5855984.5116545325, 5856857.118568684, 5857025.454080784, 5923631.549153418, 5925311.458309518, 5928653.1716354005, 5957050.573499432, 5974257.324865381, 5986000.0, 5986011.2789036855, 5988300.151215525, 5989755.096054083, 5991213.738541742, 5994305.890211303, 5995470.238578631, 6003708.221280995, 6012647.553096419, 6022884.375, 6024764.542593486, 6031008.644173375, 6044290.651032318, 6048948.596628331, 6051278.489014641, 6052080.725545774, 6062292.1875, 6065562.539559066, 6069642.99665572, 6076339.0625, 6100550.755504351, 6102198.259651231, 6210176.826494137, 6211682.498113296, 6212610.9375, 6260788.401534509, 6268142.653403483, 6289596.875, 6305203.190896685, 6322333.710231952, 6325016.576980233, 6334387.204308471, 6350778.965932601, 6457360.470405187, 6470730.334864809, 6499279.44756981, 6518041.359029303, 6550968.356373273, 6801931.944508803, 6813395.553214333, 6816973.095910592, 6844735.9375, 6849923.754322173, 6879612.970778475, 6897529.6875, 6917104.6875, 6996189.0625, 7034186.2795751775, 7034963.031123914, 7042557.856747253, 7129441.454364299, 7187646.68637882, 7187681.608462331, 7187982.8125, 7188712.962129411, 7190095.337867462, 7191683.4345327355, 7192670.905999577, 7193434.139548989, 7194289.0625, 7197323.4375, 7223964.492449682, 7229109.375, 7229477.839044743, 7229482.8125, 7230906.762725727, 7231420.001217392, 7231970.9206539495, 7232013.836342687, 7232330.5686315335, 7232341.108799827, 7233250.0, 7233297.080225229, 7234380.933091696, 7234594.183585674, 7234675.679937519, 7235368.75, 7236702.676597549, 7236716.101953561, 7245645.540655579, 7254893.0445004, 7284954.897521121, 7294839.286652906, 7297088.879949836, 7320969.390712495, 7342299.826011281, 7342745.3125, 7343723.52341405, 7343798.034400203, 7347135.168716113, 7352335.085208803, 7354686.579204435, 7355086.856900144, 7356516.402175634, 7371493.483552729, 7382657.390448688, 7397229.6875, 7398748.377411344, 7399120.98735776, 7399953.688847409, 7400465.625, 7400931.25, 7413620.044336052, 7433956.509858481, 7433969.646359172, 7441618.762068863, 7474234.375, 7484335.888617819, 7484621.875, 7486802.072639427, 7499945.028096287, 7501697.83420089, 7508035.666661402, 7508251.4439839795, 7528586.241651456, 7537082.8125, 7542715.651241762, 7542734.040922593, 7544980.797274416, 7553025.641503251, 7578088.276295972, 7578904.6875, 7585960.9375, 7589375.9082144685, 7589410.9009234635, 7590134.081239167, 7590451.182442565, 7590467.104956886, 7591775.0, 7591951.731751415, 7594701.958859848, 7602583.999063498, 7603721.856382397, 7605315.635915407, 7611471.875, 7611670.3125, 7614620.3125, 7623279.6875, 7623954.5403501, 7627542.1875, 7627728.622751171, 7634312.112912057, 7635031.591877277, 7637642.058258591, 7637647.865045196, 7639252.385685269, 7643713.5139555875, 7644655.5779222185, 7645905.364967068, 7647212.16011214, 7648859.532496938, 7650381.208161432, 7652788.799337561, 7653322.49587355, 7653574.285635759, 7656570.3125, 7671891.677056959, 7672168.75, 7672344.238688608, 7672652.004010167, 7674515.625, 7675054.6875, 7675055.809533706, 7676398.13990594, 7676542.879657656, 7676545.983486496, 7676643.356028093, 7676845.1814322565, 7677812.84964832, 7679147.726668791, 7703090.87866277, 7705604.5697694905, 7711641.5989480885, 7714066.853266368, 7719845.2384057585, 7720701.5625, 7722745.858911664, 7724275.107072739, 7729031.36733567, 7731218.623305401, 7736181.063701062, 7739563.030071924, 7747210.9375, 7747405.05742187, 7748564.582285515, 7748743.245247926, 7748977.496476135, 7750078.367587857, 7750245.3125, 7750440.625, 7750707.184311815, 7750856.25, 7752450.0, 7753061.171918027, 7753100.450914994, 7753248.4375, 7754396.875, 7754588.613781477, 7754607.8125, 7754871.3359037535, 7754910.742297682, 7755763.755689601, 7756004.1300000455, 7756175.0, 7756643.618776319, 7756851.847231678, 7756929.6875, 7757149.99169496, 7758418.75, 7758446.261789202, 7758489.0625, 7758546.875, 7759284.534845694, 7759685.9375, 7759805.9812986525, 7760717.840660086, 7761310.331418896, 7761353.072594893, 7762537.8286402235, 7763846.964723356, 7763977.77729067, 7765689.441168108, 7769610.9375, 7794065.625, 7796305.363472566, 7797587.5, 7798560.301674853, 7802365.440915215, 7802728.125, 7803097.641178338, 7813000.426509306, 7813575.811052327, 7814826.748936308, 7816443.0941182645, 7817021.875, 7819819.606445399, 7819985.9375, 7820034.375, 7823021.707319076, 7834477.827786832, 7835393.079065192, 7837914.0625, 7838457.775582233, 7838478.125, 7841484.375, 7841497.371196724, 7843410.9375, 7845686.590539292, 7846095.300969126, 7847147.704522872, 7849250.0, 7851077.247747194, 7851499.44987528, 7851989.239538956, 7852289.323852244, 7852325.685089746, 7852368.659315139, 7855122.415995678, 7855257.8125, 7856728.125, 7856735.9375, 7857330.1725288285, 7858498.43489215, 7859760.623773478, 7860282.498188883, 7860826.5086646825, 7863129.130063758, 7863661.514964399, 7869633.8714371305, 7869838.370685284, 7870042.1875, 7870184.912076619, 7870250.663541263, 7870292.886122798, 7870663.007912161, 7870672.980222534, 7871391.897805127, 7871512.5, 7871658.136842134, 7872009.375, 7872069.168563055, 7874543.973608468, 7877821.875, 7877857.11876352, 7878331.25, 7879093.367957695, 7885746.800411886, 7888099.652273307, 7888228.079157135, 7888489.0625, 7888492.577397735, 7888651.444731258, 7889121.875, 7889166.230930289, 7889206.178702815, 7889288.070617876, 7889387.5, 7889728.297434725, 7889775.0, 7889854.455078821, 7890068.639833927, 7890515.329414173, 7890549.198043951, 7890687.571310293, 7892163.278724491, 7892820.3125, 7893120.3125, 7893612.013762249, 7894818.75, 7894841.369281691, 7895068.156303659, 7895825.7303460315, 7896525.0, 7896547.1850189995, 7898704.6516973125, 7900245.3125, 7902133.451094716, 7905581.7264990555, 7910464.662680787, 7911104.6875, 7913350.457529907, 7913604.749140526, 7914452.444140734, 7916385.967281618, 7917382.2976986775, 7917422.175632744, 7918226.5625, 7919004.497367726, 7919279.684678575, 7919815.368590222, 7920631.730285194, 7921129.318665599, 7923373.6649593925, 7923550.0, 7924798.4375, 7925242.075332047, 7931850.455108259, 7936566.229765094, 7938015.625, 7938052.9689329425, 7939354.6875, 7940843.3463576855, 7941258.401632567, 7941317.886136836, 7941378.125, 7941418.069667323, 7943493.218433226, 7944719.867958274, 7948399.500615245, 7948620.3125, 7949111.282873487, 7949606.736957877, 7951014.283916971, 7951683.204373647, 7951845.987986363, 7952038.265852225, 7952621.875, 7953511.823350202, 7954160.9375, 7954705.691490293, 7957743.356268831, 7957796.730695689, 7960042.1875, 7960187.5, 7961037.5, 7961599.829776969, 7961610.058516011, 7961964.0625, 7962013.229136954, 7962023.128977413, 7962042.952769685, 7962196.149603769, 7962344.844082658, 7962361.072628348, 7962892.1875, 7962991.024148195, 7964050.757773685, 7964072.653292626, 7964088.594879111, 7967741.146270646, 7968180.244225474, 7980613.252782537, 7984068.7101868605, 7985231.941685334, 7987100.216017378, 7989462.231610007, 7989972.280420932, 7989978.5233031, 7990038.043948057, 7991565.625, 7993242.1875, 7993432.926165188, 7994181.4916844135, 7994316.381683397, 7994405.029836088, 7994464.062303155, 7994520.204538801, 7994793.75, 7994797.183684543, 7995162.5, 7995475.0, 7996746.4146599015, 7996862.5, 8000703.493756055, 8000715.819911507, 8000980.699664293, 8003905.708929104, 8004881.25, 8006074.914328438, 8010338.917753935, 8011549.143193641, 8016806.678089619, 8027613.105833009, 8028650.0, 8030409.720423965, 8032667.087659544, 8032745.142114362, 8032864.588578428, 8033106.065941033, 8033450.615669577, 8033985.280779378, 8034001.903718921, 8034020.133719459, 8034250.723743462, 8034268.9367574435, 8034339.606566464, 8034453.125, 8034462.662220738, 8034496.177108894, 8034838.5580433095, 8034864.0625, 8034964.0625, 8035168.883915487, 8035271.611536982, 8035373.4375, 8035479.6875, 8035615.889385601, 8035620.001503609, 8035632.68360025, 8035994.765945993, 8036143.75, 8036154.567750572, 8036222.400010459, 8036703.6948588155, 8036841.5799725065, 8037029.272782333, 8037274.556688277, 8037315.625, 8037930.423235701, 8038180.751000731, 8040965.625, 8042034.375, 8042093.05865667, 8042189.0625, 8071864.0625, 8072939.0625, 8074768.75, 8078612.705601422, 8080479.6875, 8080874.6597836055, 8081506.25, 8081589.525314105, 8082636.924553777, 8083713.734663586, 8084023.712908613, 8084175.0, 8085515.625, 8086029.6446710415, 8086496.49834282, 8086768.274092173, 8086996.285143871, 8087667.1875, 8088269.845623528, 8092027.676915765, 8093537.5, 8105015.543835881, 8110346.766116745, 8112458.856731728, 8114606.155875952, 8115064.0625, 8128610.024724329, 8129178.331946492, 8129850.0, 8129851.093343973, 8132350.0, 8132429.6875, 8145832.320842009, 8148210.56610058, 8151401.2052775435, 8152587.687757387, 8153509.871368095, 8154453.05790637, 8156524.687720689, 8157294.059460098, 8157392.482174061, 8158967.076356187, 8158973.4375, 8159658.784514776, 8159724.902000899, 8160468.96136811, 8160628.125, 8161177.58342915, 8163577.954757197, 8163624.254378346, 8170136.668351611, 8170154.697920787, 8175515.381803362, 8176331.478224159, 8176346.65253669, 8176375.0, 8177075.040348873, 8177385.518238868, 8185541.2784154285, 8185678.125, 8187094.554928348, 8187136.859294199, 8188493.292808005, 8190404.6875, 8190457.8125, 8193799.829186149, 8193961.908279182, 8195400.0, 8195879.6875, 8196840.187852519, 8196843.9632122135, 8197721.559286517, 8201846.866328681, 8203739.770145149, 8204337.5, 8205133.452182114, 8205155.5631583445, 8205291.645054006, 8205560.606948459, 8205734.375, 8207690.625, 8208309.342324945, 8208316.0033498155, 8208327.311755794, 8208463.347687547, 8214007.376138689, 8215885.161532958, 8215922.598719369, 8230896.207610635, 8230913.608407501, 8232364.584178031, 8232503.125, 8245549.958159141, 8247398.041751189, 8249829.676602875, 8251287.5, 8255440.138277262, 8259976.299027434, 8260277.71527197, 8265530.864388351, 8270400.0, 8270685.026851684, 8271217.1875, 8272410.9375, 8284662.5, 8290743.363028647, 8291820.224573052, 8292237.5, 8293211.167927741, 8293252.614377276, 8293652.285751545, 8293744.6977906525, 8295203.861867485, 8296500.162953779, 8300556.25, 8303388.598264157, 8304411.525594161, 8305104.134578498, 8305418.75, 8305692.88197683, 8306510.639612111, 8306573.329750888, 8321081.110749299, 8326606.25, 8327407.728186796, 8327466.587862479, 8329826.4201180115, 8329856.25, 8332796.875, 8339515.625, 8341903.319097135, 8349914.0625, 8350084.375, 8354099.894491809, 8360160.698128858, 8360460.210885467, 8361171.875, 8362819.977839973, 8372210.00731931, 8372252.918461909, 8376237.5, 8377485.408195675, 8378743.536686754, 8379017.058743727, 8380059.182233053, 8380097.443632279, 8380211.537399302, 8380396.366888785, 8380544.880787448, 8382610.930240449, 8383236.830379929, 8383497.491307224, 8404791.896852152, 8406771.126327692, 8425583.632810628, 8429670.3125, 8436851.134053467, 8438351.996750046, 8441075.625125593, 8442150.0, 8442840.57774622, 8443080.200268514, 8443966.382944206, 8447785.870395029, 8448176.5625, 8450431.03828714, 8451871.668428889, 8453700.063457666, 8459296.787009295, 8460424.269801406, 8465158.74533213, 8465671.875, 8465892.1875, 8466281.568303298, 8466724.778485753, 8468843.560980925, 8469274.746295588, 8469433.931447353, 8469503.99717473, 8477192.289322818, 8479728.641482055, 8484629.371171677, 8490781.25, 8493155.38571196, 8493520.931795057, 8493740.568392662, 8493779.611123417, 8498263.220827809, 8499420.3125, 8499748.4375, 8505214.0625, 8509420.283843402, 8528564.0625, 8531051.5625, 8532026.21361476, 8532665.177242529, 8533081.050351782, 8535339.18293941, 8536887.129300037, 8537079.086715978, 8541371.544364579, 8541724.74027905, 8542932.802075792, 8544902.603472825, 8546615.625, 8546922.241841767, 8546998.4375, 8547024.4173985, 8548416.224006847, 8548448.759514904, 8548966.40653368, 8551330.554683553, 8551655.63021199, 8551657.459460486, 8551726.558166346, 8551781.125425369, 8552534.375, 8552688.311964974, 8558584.375, 8563812.27477724, 8576791.7461859, 8589616.623222934, 8590852.397531142, 8591295.218766691, 8592248.141224755, 8592492.1875, 8593396.875128906, 8594851.750347517, 8595279.6875, 8595335.9375, 8595354.721362526, 8595727.778364094, 8596248.787387744, 8601990.796734447, 8602599.790778223, 8617898.626000296, 8619418.26532886, 8627744.582501933, 8629295.3125, 8633828.125, 8638245.3125, 8640287.270179747, 8640802.08570968, 8640802.356560312, 8645118.270195886, 8646650.0, 8646673.079613619, 8657991.733487269, 8658635.380064398, 8659631.25, 8662843.75, 8663516.156424569, 8663640.48324017, 8664441.985154655, 8664857.178794442, 8665278.262525298, 8665829.688744871, 8665956.55124589, 8667798.329185853, 8667840.447895931, 8670643.75, 8684040.625, 8685804.316060007, 8686507.555321159, 8686624.852552086, 8686746.875, 8687211.69444171, 8687766.991590912, 8688346.875, 8688360.9375, 8688364.415666867, 8689513.14761737, 8689935.9375, 8692014.258916214, 8693173.379234724, 8693339.676691428, 8693927.599376312, 8694378.106616115, 8694858.167720344, 8695017.95806759, 8698308.934744604, 8705651.970399614, 8709962.265518904, 8710829.6875, 8711543.75, 8712042.1875, 8712085.9375, 8716684.248887716, 8717022.86801082, 8718372.950182302, 8718838.863707772, 8720847.099379465, 8721364.0625, 8722515.076779116, 8723070.665415222, 8724303.865735993, 8725060.9375, 8725775.65043942, 8726815.324949536, 8728276.311386526, 8731256.066088917, 8731754.6875, 8731762.681794446, 8733589.934464674, 8734556.804322273, 8739374.932195317, 8755346.875, 8756826.5625, 8760340.232365599, 8768879.434961211, 8768952.92812782, 8770408.686086658, 8771112.5, 8771397.159052001, 8772137.755632782, 8772245.776515903, 8773781.25, 8775752.338522637, 8775776.5625, 8776012.5, 8776711.107768811, 8776874.517510163, 8777496.875, 8781192.1875, 8793182.137152832, 8794139.168833576, 8794158.982005117, 8815996.99805552, 8818007.8125, 8818743.75, 8819201.156785822, 8820187.5, 8820620.597491471, 8823075.95063051, 8823080.980101991, 8827761.239154298, 8839873.091851424, 8841996.676316611, 8852019.144890128, 8854496.413184946, 8855384.613568082, 8856802.018977901, 8858787.5, 8859323.630308297, 8881765.625, 8882898.236335242, 8883477.917844303, 8892304.834979787, 8900000.0, 8902658.884373825, 8923385.9375, 8926095.919748312, 8934684.977074321, 8969815.173492614, 8980581.06108464, 8980914.627577063, 8985014.352685865, 8990751.061232757, 8997203.819458406, 9016098.306474498, 9019656.067106418, 9035296.43268895, 9049628.791743651, 9050717.978974681, 9055078.6004882, 9057700.692531321, 9058228.187361088, 9061433.320256447, 9061809.375, 9070601.186036317, 9070882.357699811, 9071331.25, 9071344.98586702, 9079860.86762185, 9092300.0, 9099575.660922006, 9099634.873581303, 9137253.125, 9139618.502628677, 9148344.787658093, 9148369.843847334, 9159593.370027365, 9170344.604629526, 9183112.5, 9184646.914079921, 9185867.90215353, 9191982.8125, 9205332.8125, 9207868.286894161, 9254620.635153024, 9255599.064072326, 9260996.875, 9269225.0, 9433333.9817471, 9483612.5, 9526911.742928276, 9556560.059676562, 9557409.252948303, 9647277.076514388, 9672459.027144054, 9786801.5625, 9789956.131183643, 9811607.79114651, 9815795.3125, 9842539.0625, 9844453.125, 9847085.591312263, 9860635.421616273, 9892628.73348075, 9893091.450301623, 9898203.125, 9918034.375, 9927746.374855815, 9955579.1563583, 9959290.230432335, 9959545.024219625, 9965115.625, 9965170.259803277, 9966174.23769934, ...], [63.52741669642774, 57.34758186725378, 19.98361877224261, 16.67170915174254, 46.68090579613951, 88.42620914703, 19.494475920621152, 96.33918254873991, 19.055328733887684, 9.671387548321837, 18.265618765492793, 80.77010407615269, 33.00878402442859, 47.95868637622986, 50.23996371492012, 11.560036321503947, 17.384690237347925, 14.57942073329473, 73.2364908621488, 57.90038382740751, 26.68593220490107, 65.24785282182138, 12.385443150093545, 22.26916253992543, 59.09187443960673, 6.298979921756498, 13.548550450214677, 30.68835724149486, 114.55616225946206, 5.668977061290494, 16.746170838850762, 48.7102392568478, 5.795003674816309, 12.908298991292893, 62.44967319824924, 46.58017182968558, 7.323427396498298, 28.462452205511603, 52.647518055862, 43.273967736233224, 7.383301052408796, 9.094263515431187, 59.61596467956417, 6.159998500855343, 26.215476353981877, 50.09297591303243, 18.759565058267203, 39.26247331389019, 21.324999451282892, 50.07219274097414, 27.793428013949715, 10.169687267071373, 32.9463108285272, 26.149682565902104, 82.24642408098434, 8.730295340116376, 6.436252198831767, 71.73134365244742, 46.334786914130106, 11.05170415164226, 35.80063049220928, 36.01815154248722, 92.8764404460594, 78.58286378284683, 12.382468296809519, 14.259060747485933, 55.37046816392203, 7.387386040020888, 170.2741692204614, 23.784516790977193, 73.47146495781561, 38.17356470718693, 93.02959300523617, 140.63867637901973, 55.07860026587909, 12.945164408038519, 39.389456059822564, 158.84364671389315, 57.231402161141894, 5.938049355312671, 6.742475312442032, 23.120570326682326, 5.558389620556067, 118.7432327451111, 22.70515745154423, 12.321008473685804, 36.37420806813806, 80.62429357790606, 56.58939595836347, 82.97615104186488, 67.14803245966874, 76.8410449641251, 15.569965397298658, 74.83107400049762, 60.99977472186464, 73.82030142403286, 6.793427562073198, 6.017589838308137, 15.479093306976782, 7.064816500348304, 95.21999518408374, 7.393165928708897, 50.71629415748546, 20.13344653456645, 13.693008506452431, 48.162635864931886, 83.79936084745079, 7.208002185476661, 13.213081555466909, 55.03401513475108, 127.70787988709392, 9.80686745026929, 13.443679660812945, 33.705498073464625, 55.03322504548811, 6.75581609859193, 8.645409304742133, 8.70676581594313, 42.09076816580833, 31.574346949520752, 55.48790695995582, 6.136627786028904, 8.451374437966402, 39.711444768516884, 7.133764884401879, 5.646579430751732, 11.423285865221239, 55.19995632969585, 8.475763887737404, 7.658860974779668, 16.766735479762882, 20.394283212656276, 28.77182804935501, 67.45802949430879, 8.515262066121492, 7.311891138116661, 67.55462731162727, 70.31690266723346, 19.462949842050016, 129.8664158285369, 99.38741176862587, 16.537803534024775, 13.259566947382934, 52.776874011936705, 35.74570067916618, 19.290331408633755, 134.14040875905357, 18.89450052962454, 25.447414305552535, 38.20229933768379, 25.208402710429592, 88.92087527459337, 79.51993871623137, 47.57735818743654, 42.56910303732645, 128.5052746447413, 27.671642142554767, 186.3591599021537, 52.67967043200605, 58.447325965154796, 22.381994336679323, 18.15712475414405, 67.78222196199177, 6.6086608608396435, 37.13252809640207, 6.601766494878785, 84.1903863101083, 8.113838306154081, 121.48393981415938, 95.15496208641437, 49.45445427054584, 41.7759522928854, 50.440966443098986, 28.816312354741353, 11.70808591781833, 12.399145574698544, 14.909760129481137, 34.26419073604798, 14.268217186722326, 51.06631146693395, 123.81677041247922, 30.780951982519717, 73.61808743243424, 18.6672333784082, 17.81701589479393, 116.09066714135494, 33.09036702916829, 96.18364438017342, 16.879790863630245, 32.3298231121358, 23.931817057326388, 28.995756007823676, 36.433752974751926, 52.499133437350096, 57.53814008892098, 14.144302233369277, 19.85644511457626, 7.254713105448755, 29.867080385432523, 18.039120476896173, 63.942309831310354, 74.46450306152684, 12.387665976080212, 53.40813238137116, 22.023732625590736, 9.770115330281309, 120.4422351798579, 10.179010126576157, 11.472657407367862, 11.497130839168646, 25.37664336342987, 28.198650559475794, 9.188494937553331, 44.87986480722519, 128.550989898313, 22.517444270419066, 94.05174222935077, 35.50226389462177, 33.48836199945531, 10.252101565481928, 81.46967364335036, 14.014691486222073, 68.83817789206003, 55.20451004047104, 57.4686221327171, 12.376522012505646, 9.858476009760336, 53.52075671857552, 52.67761785916914, 82.7935286553432, 16.03400072432217, 19.562314623697038, 11.14662375821955, 49.42737670516976, 9.290409742529775, 50.998143134615354, 108.29660700421509, 81.85189194926875, 47.565426079086855, 24.13052495019845, 149.4379443852771, 16.931802958087736, 29.9301199111265, 144.14649225173866, 23.324995689476783, 74.14832937602785, 31.55796544122119, 19.045384997973585, 76.41892496836098, 55.212392612548015, 7.968445334578314, 37.183020735804234, 57.354094379253254, 9.029468449327494, 6.07955731649008, 30.594429159862504, 131.0075611582114, 8.50792392250125, 65.00135245479817, 127.31445054196712, 147.86954168937658, 65.0172146650399, 78.14237919419888, 101.40153140448663, 95.68446576032962, 25.92149675891735, 93.0249520628069, 101.8385326522322, 50.302023939198385, 22.76393295432655, 26.208021658146983, 20.799542989605108, 82.89088513721762, 13.195031937097339, 66.42409539465373, 18.35477456231591, 50.41090938060664, 19.758957380136806, 27.72313260177611, 104.52925982433183, 7.84437231702097, 19.591692323305114, 87.76624047056058, 8.033912023247868, 84.0210065758478, 131.45976526725863, 11.895873787314407, 35.03276438856066, 45.69370321666378, 22.108274995250852, 6.230317684772917, 28.88650966338068, 6.160770644855315, 7.466700222479894, 55.35532612636092, 24.095319730908425, 12.783478739495411, 16.00533991439783, 26.396239575453876, 25.231007536093202, 32.42967489232514, 9.269528385991634, 40.41504485854319, 14.204789966606056, 107.71552707908977, 24.64542831237702, 10.935285898997977, 76.59537136573434, 17.43738528487581, 117.21689648851473, 11.75972863148504, 269.6234115178686, 79.70219652106437, 28.700351189256047, 11.529309945670484, 56.87379037311484, 76.85595786016927, 47.69196853198223, 46.49560898199395, 194.6210670543579, 7.690281743400322, 112.90186362066021, 37.89004972595083, 56.524281312840785, 17.156005608751478, 91.51986403225368, 123.07990782342581, 38.3371439904762, 11.11223766459487, 13.171278380800675, 57.7918704850129, 14.463872696463673, 17.279097893929226, 31.2830503062079, 6.485790130637294, 106.77567426236187, 129.13473865614617, 74.53802879591699, 53.018321415716976, 6.104881008669254, 35.453723545524056, 124.65888712143699, 118.39699514737725, 33.48066471300211, 27.528901747856363, 51.87432399781216, 6.0974796200958785, 108.75849538070233, 16.61218563926551, 37.50067562188034, 62.008964899831575, 91.80020018709837, 71.63233058931324, 60.863820861503854, 16.245560140926322, 102.73640196560731, 25.524092761700736, 9.7201048941472, 170.04653766576627, 5.348351019840956, 27.799617744327243, 31.10564897838593, 222.71383077471683, 199.46757896862687, 35.255413777536276, 51.02266658682089, 86.9352206026599, 19.942085999313896, 34.76840253859735, 68.09156566732496, 118.38014972923416, 35.42627715011943, 12.003287843641179, 45.133959135770624, 163.29627153560273, 97.62793957632685, 149.97889643740413, 80.25977107682644, 79.65982652025224, 8.905869498074392, 91.67822090137622, 8.429795604139786, 18.405724928081845, 6.472968930077218, 76.13664692608869, 44.39950807592863, 65.994346016337, 40.78885639803863, 89.17116502998891, 8.285198732486306, 159.69003876847302, 59.08062719176969, 33.106229909268436, 23.738090769878596, 32.545265019575396, 21.457632188831194, 19.771637390616245, 64.71242990109312, 34.77833050421707, 58.44435124406555, 492.56584038322865, 17.30974435856757, 13.444596011852946, 23.883273984353348, 83.92275076771375, 16.34087366859119, 139.37371419241305, 8.521059291572827, 61.70624009644086, 115.98482040464478, 21.423814673294867, 73.45318893357562, 5.682867696061117, 22.98217552585352, 6.433929401502332, 80.87828025190079, 182.19402701157085, 32.7507082730972, 55.819561177154256, 169.17160449451043, 57.468746763160624, 52.403667455572126, 12.154464445156334, 37.831978224349356, 88.66558428040918, 35.615164098809316, 5.521905741536778, 34.036357698081, 32.136326208974516, 18.93078789647732, 53.648097234940934, 41.24261386985459, 143.32931054623478, 120.48231092992849, 26.832210928042464, 82.5045670674089, 8.72372200902158, 96.19068579610979, 122.3441356932782, 56.57396882970944, 11.649519162876707, 27.835549243636425, 28.824138650989976, 141.16986297415153, 12.327955521153315, 26.301022724196674, 63.37848115461507, 11.92702640302152, 6.49679753092043, 95.14064638472198, 7.614044819611052, 8.931002686087362, 5.630895219930805, 44.93360392152886, 5.800044783484128, 28.469418042900315, 43.23642645225998, 9.773451039585, 7.475070252332028, 122.17095661331426, 38.994471092517486, 57.47423228860723, 48.85792357878365, 58.83727473205335, 30.289953625303063, 161.90006941275024, 19.499715514443004, 90.61155395479591, 37.266095766452494, 30.570564973642846, 10.001374236055243, 46.69144409228703, 23.09814459834358, 29.1359551284269, 174.2242617922631, 21.49923982781353, 88.31161998684689, 37.861297991780866, 17.1913140441728, 8.407243006500757, 25.91499688134953, 8.679298820267128, 211.258741608461, 88.2111583213941, 19.895059878744, 42.57603398413993, 88.75478120060502, 37.51989658342857, 37.27727483762732, 41.05883797808874, 45.52736172016709, 52.68926378287432, 55.48714496749814, 51.913731446419774, 38.15348664249553, 18.707547633632025, 10.677438924181583, 12.579595713908871, 39.11669683895224, 7.003532394900836, 97.29770030924686, 40.03210260145546, 21.044170230106232, 94.71487493440753, 187.9237097568601, 8.965006806010487, 73.67265294854013, 43.21670886427495, 24.073635792460834, 7.588901143084818, 25.003760325884954, 11.483021266946299, 67.13884411353575, 18.948961346117862, 8.509070252576239, 6.877187932242822, 73.47286912007036, 64.23334113857867, 50.74972689282401, 15.950325471162834, 18.902974008515624, 16.429400073910884, 96.19503805857157, 6.470299501639442, 113.26603224406531, 104.41443928285575, 39.20175360134654, 43.70345033202064, 121.23789082440159, 39.70293453713506, 17.112008598175716, 15.740383596264156, 35.27722820721968, 5.673166900172168, 49.943048876576306, 14.624723624948873, 25.959519667698316, 179.26107826423626, 16.869880637426547, 82.51820986896126, 55.22999102482582, 40.90960366360209, 173.14771309942068, 25.56074114934868, 12.079485346045129, 25.354031539815473, 17.954951127063293, 21.36125026849328, 23.033311976073378, 78.14936388487067, 85.53949748411722, 15.704558292997207, 110.75169454670547, 41.40147532924679, 199.17849147336224, 10.187825441721197, 27.486433683159298, 72.71719094031091, 29.219060452047568, 15.477741289065005, 24.22894675022227, 89.82807309997229, 50.90851799852119, 51.763290995257876, 7.042031425248775, 61.28303568711686, 49.548371635452426, 36.95973732335581, 124.55342258327548, 9.818630852043379, 26.52810212012958, 91.09532033354412, 12.538644671223404, 55.61228484124216, 156.68411929959638, 97.71452360550606, 10.428088394322845, 30.37489221936904, 83.1344805520764, 29.659275901879425, 57.23917201165466, 133.6236619893337, 54.25874944568514, 93.50656569834933, 15.787693763771717, 67.8261498764075, 162.18914809290297, 73.49864493559375, 11.937358653227212, 8.888021365390207, 197.22387173671044, 9.575664430092363, 79.47061487353336, 37.91457615820375, 62.618965302848494, 45.98732961544901, 21.736846928575094, 45.68977348669149, 39.44103319927925, 21.830013778602517, 85.60580696317587, 30.2643396577248, 64.0088470445602, 38.9439063843081, 21.31277980677721, 111.73927713817602, 29.191791615531557, 18.17241570176104, 15.79367443649934, 79.06100400763181, 16.898891269251983, 176.35710172552237, 180.72338113298815, 21.576721818123378, 140.12084474023106, 83.4744498422055, 8.388426575796178, 17.244230542980205, 39.7288704625786, 6.439228132365524, 29.98361585176341, 7.713410562278733, 26.505404865600575, 53.278906265643954, 10.315167519429965, 25.333997599172804, 9.516758933162276, 64.02725060334573, 21.088195696510535, 25.5629219539267, 10.132959984139696, 40.24963180164371, 14.981377901615636, 19.2095894564926, 51.881374988438104, 24.794408124130044, 88.40053478079943, 7.6178966652256115, 52.24643259941675, 27.395138258111736, 62.096794539192565, 15.931425829844047, 29.957543132681728, 13.444836316255545, 131.19921357469187, 39.671342381226275, 24.908692701251432, 8.87662346262098, 56.995198813499066, 50.23424157758525, 47.64677611644328, 11.478169109519996, 23.55207760057861, 28.354505684694796, 321.2849840501282, 60.787614090513735, 168.8571126094571, 12.841890148359916, 18.337478519075155, 23.368178060704093, 35.444280387000724, 49.63005968296271, 67.15096591126346, 98.78267283316626, 24.625713073998067, 53.57794942200432, 19.205405167757984, 207.5393710455499, 199.15908777609906, 12.889850357150076, 43.01995597220369, 17.388741791329238, 180.2962959888976, 27.72309014361537, 13.620931305483452, 28.311069972442805, 86.5825236952152, 193.99328822135416, 167.3204848194647, 77.23955779025913, 10.57410372718459, 40.1643591457234, 6.158614817549961, 38.529699941090755, 40.11045824592024, 46.28606775083069, 32.272863109404014, 27.16664885704038, 52.928710409844705, 6.810398454939516, 73.27224078932963, 5.7543874895122835, 13.022492428192077, 124.16521387480631, 45.60307791570829, 97.5005702902243, 13.798027331115307, 89.82722927710032, 158.07434666672555, 49.73840023305523, 84.74612173392748, 66.04078193462041, 84.03483317380667, 104.00232769356664, 104.74906458499093, 88.30296775775057, 10.304100788114383, 47.01758739772723, 32.973358273661965, 106.58925530171663, 122.23330258651868, 9.501098901198006, 46.766578732846654, 53.17370123639661, 26.59966875368965, 14.101413125253147, 19.495682790901075, 82.61859744768422, 5.910781717040329, 6.896670205224262, 9.162663172351522, 103.8692615015413, 21.20567135540812, 254.08063428768236, 26.215889400893197, 25.22447243431416, 17.66558626497121, 12.215592839204385, 13.303886085933836, 22.202469285001488, 69.35131930401789, 19.952944647683637, 27.500942405491408, 23.870942061006474, 6.937637454323881, 8.773885400214654, 42.45221725475865, 109.24534112751482, 16.902762852418064, 321.13751525484616, 35.982142503018956, 81.11033694521906, 37.47460117092906, 34.91261118537163, 67.78927028235347, 52.03460906845002, 24.94803630624784, 22.860086492096887, 7.626351626503201, 26.897860958119306, 6.625987763431392, 12.984412241414484, 51.41451548690254, 136.8899824974222, 27.91646553479405, 69.0820404662335, 25.280037730725542, 24.360682493392748, 108.42119413417139, 98.81483742064616, 28.382077873491035, 79.93508129148182, 8.126093654867026, 44.25503121840262, 295.9566432262146, 68.20139839088773, 80.32805980172587, 27.10000594113991, 38.26935880502205, 200.94753424345288, 107.7510745917933, 29.176114393490092, 86.26494302779702, 28.556935978584658, 68.29023499974022, 9.052852027324606, 13.471440118623256, 38.675591551303874, 146.65889816059027, 176.5113281379112, 13.058245035770259, 6.699245435935797, 22.547581509010357, 103.3742669782618, 55.94159575015177, 121.72503051078795, 11.753980907244532, 28.804566543486576, 13.10537322939354, 14.170849143749503, 30.477080185698313, 19.58910904120347, 54.53976278697018, 20.375958791829397, 26.482960492123865, 54.62037781124545, 26.283940961119967, 94.6038317556409, 30.132734047715793, 157.47221882896733, 24.75534313677959, 22.099204956626718, 135.2067766873672, 52.54152339127056, 13.422692512464579, 10.694172067231987, 35.37456928753671, 11.127908296345508, 116.60674640111463, 156.39398725016684, 121.57480790472147, 6.492412611709419, 170.41397281343237, 127.61408069394315, 15.6391399471617, 24.983964708886337, 30.81284404050663, 17.816125273510696, 117.06210373985743, 41.098482172283546, 58.90628421748784, 58.61910122123601, 154.6387595353063, 19.756416537080018, 8.75643646952227, 5.060273987570512, 217.00659396525177, 45.101638466658194, 59.80402725314623, 8.900701988584084, 138.95474953902024, 169.78449469182206, 14.055081127774189, 5.8035651847795675, 8.182395813052173, 50.07694967478146, 43.83825124134559, 29.557090564557903, 17.043645677982944, 26.552635103661462, 49.237111873770395, 64.24049685199475, 55.023565036198754, 19.78316874772035, 6.447517996687942, 171.91690170652205, 83.30855519635244, 12.560462358953833, 28.46742619722541, 70.53618792770497, 71.62605029657782, 17.978787554208438, 15.607808739023767, 39.25473055773941, 5.95669512160375, 14.723984624315712, 83.18805014151796, 68.17253038502284, 14.871898599121703, 37.38694608793209, 12.591813946970003, 43.75029736885791, 9.701886908403809, 16.933720460061465, 42.373282942205165, 40.05664012665717, 61.38252659251668, 53.886173593484415, 26.258868239634275, 13.139677031635646, 222.3007808446033, 165.19568327408783, 38.7037814267574, 92.08989328092579, 8.907217096932904, 202.3796013214136, 14.48434619423633, 42.575717596136975, 45.69092097383705, 11.463800101746365, 24.3959523383787, 128.6750286890179, 93.8674949924685, 164.88839975291356, 23.528998765912693, 17.57997761008525, 24.93240078388662, 36.18858785743499, 123.00873026623702, 23.13889974300944, 24.376534481208655, 72.60374886585345, 19.795099051828654, 37.618686013134266, 208.1211545163053, 63.13387323753511, 17.064104704656348, 83.79640188592917, 51.89778032651208, 78.96413379873496, 121.4405163908536, 9.479647931327575, 51.41032497425906, 28.82928439611979, 29.00397812542465, 20.089176372281397, 157.21170947411005, 13.628983579329898, 178.92396707550338, 64.08644374254406, 107.35458243760263, 22.48820434974386, 90.33796366699836, 21.826598357395227, 62.468228132823974, 24.143022211918804, 27.10336600180077, 47.84872870825599, 147.64544696958063, 202.59317262602156, 13.431856538779789, 51.376576963581385, 55.09939575029507, 45.316491410582735, 7.674494219684616, 101.72261308530389, 25.10103209667007, 10.8186446324748, 20.587615599287194, 77.17323570990332, 6.038522395061803, 66.30441054463101, 26.36622219691942, 43.41825958893725, 131.55264089753217, 48.208975831100965, 17.644214258701492, 16.176348479388494, 8.940705823609859, 18.468855132313085, 7.556525609804327, 8.192171587500342, 224.05784316047834, 18.28372024649285, 37.220030728746934, 23.122501686675243, 44.09980634306412, 122.34184979168643, 9.801112812764488, 56.432023537687385, 42.46721717972928, 21.956162099952916, 131.5775312095166, 47.51594910608687, 11.020211593382124, 31.39273506861034, 190.77793072632184, 5.259317171875497, 276.2836220244803, 56.9195124754684, 5.894966210631885, 29.85279753842198, 22.780266242886952, 19.643080936107406, 245.06285247767497, 38.70792358672925, 18.606884545864997, 73.26355707055143, 78.32511004415056, 53.229593181256064, 20.244165485498684, 64.62060488199961, 39.34210271761219, 84.10539244567558, 22.62842525533734, 74.7092684174266, 102.43166254883633, 208.3975415837538, 22.21464460295595, 54.577791764080246, 112.56980237965905, 91.11852754370693, 84.294847505662, 43.112016393490194, 79.36175694288956, 66.51696331848085, 29.157661523559067, 23.178157598875902, 5.895704037641897, 26.577766980969628, 30.261398836757714, 60.76295614550732, 81.94572981869808, 86.20325806591165, 23.173641553582463, 105.12451237503844, 23.901606946813903, 98.35488058479899, 7.584288729788007, 40.662201571829264, ...])
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);
([4389640.625, 4475682.8125, 4543843.084084018, 4568961.327767099, 4591120.978378081, 4654979.6875, 4666057.501439522, 4690711.26659518, 4700573.420661582, 4708716.001459991, 4737456.913994315, 4823447.270011899, 4871235.458540867, 4908716.410962938, 4949941.822777969, 4960548.697537271, 4961407.379743129, 4990754.589143628, 4990765.625, 4990909.375, 4991674.074640566, 4995039.0625, 5004806.92892541, 5032957.386929834, 5039742.551856011, 5058625.24747672, 5082548.521889608, 5082589.082913356, 5098183.514909999, 5098244.702027627, 5116070.577052522, 5194501.5625, 5200990.365193269, 5217619.6525352895, 5227581.25, 5237938.65613809, 5242974.153895971, 5247820.309325549, 5249098.4375, 5249285.2419619365, 5249285.285513556, 5249296.580567807, 5263314.887519594, 5281916.2891382575, 5281921.746218267, 5285720.3125, 5285727.299042005, 5289365.625, 5289374.48298195, 5290160.9375, 5295431.211942514, 5307778.973928825, 5309023.327905589, 5312602.675259864, 5315560.10275841, 5315846.066843237, 5336568.417834349, 5355373.4375, 5365096.1990725575, 5387440.575825546, 5388815.625, 5391196.875, 5391207.8125, 5391706.25, 5393617.865070009, 5394058.841908323, 5394741.430767107, 5414002.48597994, 5435753.33072533, 5458464.566973324, 5465915.625, 5479026.204758221, 5480878.125, 5481702.5278630685, 5481710.119795246, 5535596.2297764495, 5538297.111177837, 5541518.726294388, 5544886.7487740815, 5552098.421914048, 5579609.268734479, 5590693.399011121, 5615734.885679758, 5627736.368786156, 5631637.113485667, 5653783.4618417425, 5655973.91004357, 5656073.174065044, 5656881.25, 5658552.796955292, 5662312.1772233825, 5670510.9375, 5671780.4582373, 5673521.875, 5701162.5, 5706511.907758099, 5708159.523047964, 5709699.293531366, 5719724.335219801, 5721213.842578191, 5724982.319304794, 5724983.754266996, 5725285.9375, 5729047.309551809, 5739713.126365072, 5762370.3125, 5764373.370266431, 5764456.569329076, 5766023.784670692, 5768452.463477968, 5768505.813404159, 5772344.263436541, 5774933.331673772, 5783361.496635535, 5789673.2182632955, 5793457.7738563, 5794591.247050033, 5804378.84318776, 5834260.726393474, 5855984.5116545325, 5856857.118568684, 5857025.454080784, 5923631.549153418, 5925311.458309518, 5928653.1716354005, 5957050.573499432, 5974257.324865381, 5986000.0, 5986011.2789036855, 5988300.151215525, 5989755.096054083, 5991213.738541742, 5994305.890211303, 5995470.238578631, 6003708.221280995, 6012647.553096419, 6022884.375, 6024764.542593486, 6031008.644173375, 6044290.651032318, 6048948.596628331, 6051278.489014641, 6052080.725545774, 6062292.1875, 6065562.539559066, 6069642.99665572, 6076339.0625, 6100550.755504351, 6102198.259651231, 6210176.826494137, 6211682.498113296, 6212610.9375, 6260788.401534509, 6268142.653403483, 6289596.875, 6305203.190896685, 6322333.710231952, 6325016.576980233, 6334387.204308471, 6350778.965932601, 6457360.470405187, 6470730.334864809, 6499279.44756981, 6518041.359029303, 6550968.356373273, 6801931.944508803, 6813395.553214333, 6816973.095910592, 6844735.9375, 6849923.754322173, 6879612.970778475, 6897529.6875, 6917104.6875, 6996189.0625, 7034186.2795751775, 7034963.031123914, 7042557.856747253, 7129441.454364299, 7187646.68637882, 7187681.608462331, 7187982.8125, 7188712.962129411, 7190095.337867462, 7191683.4345327355, 7192670.905999577, 7193434.139548989, 7194289.0625, 7197323.4375, 7223964.492449682, 7229109.375, 7229477.839044743, 7229482.8125, 7230906.762725727, 7231420.001217392, 7231970.9206539495, 7232013.836342687, 7232330.5686315335, 7232341.108799827, 7233250.0, 7233297.080225229, 7234380.933091696, 7234594.183585674, 7234675.679937519, 7235368.75, 7236702.676597549, 7236716.101953561, 7245645.540655579, 7254893.0445004, 7284954.897521121, 7294839.286652906, 7297088.879949836, 7320969.390712495, 7342299.826011281, 7342745.3125, 7343723.52341405, 7343798.034400203, 7347135.168716113, 7352335.085208803, 7354686.579204435, 7355086.856900144, 7356516.402175634, 7371493.483552729, 7382657.390448688, 7397229.6875, 7398748.377411344, 7399120.98735776, 7399953.688847409, 7400465.625, 7400931.25, 7413620.044336052, 7433956.509858481, 7433969.646359172, 7441618.762068863, 7474234.375, 7484335.888617819, 7484621.875, 7486802.072639427, 7499945.028096287, 7501697.83420089, 7508035.666661402, 7508251.4439839795, 7528586.241651456, 7537082.8125, 7542715.651241762, 7542734.040922593, 7544980.797274416, 7553025.641503251, 7578088.276295972, 7578904.6875, 7585960.9375, 7589375.9082144685, 7589410.9009234635, 7590134.081239167, 7590451.182442565, 7590467.104956886, 7591775.0, 7591951.731751415, 7594701.958859848, 7602583.999063498, 7603721.856382397, 7605315.635915407, 7611471.875, 7611670.3125, 7614620.3125, 7623279.6875, 7623954.5403501, 7627542.1875, 7627728.622751171, 7634312.112912057, 7635031.591877277, 7637642.058258591, 7637647.865045196, 7639252.385685269, 7643713.5139555875, 7644655.5779222185, 7645905.364967068, 7647212.16011214, 7648859.532496938, 7650381.208161432, 7652788.799337561, 7653322.49587355, 7653574.285635759, 7656570.3125, 7671891.677056959, 7672168.75, 7672344.238688608, 7672652.004010167, 7674515.625, 7675054.6875, 7675055.809533706, 7676398.13990594, 7676542.879657656, 7676545.983486496, 7676643.356028093, 7676845.1814322565, 7677812.84964832, 7679147.726668791, 7703090.87866277, 7705604.5697694905, 7711641.5989480885, 7714066.853266368, 7719845.2384057585, 7720701.5625, 7722745.858911664, 7724275.107072739, 7729031.36733567, 7731218.623305401, 7736181.063701062, 7739563.030071924, 7747210.9375, 7747405.05742187, 7748564.582285515, 7748743.245247926, 7748977.496476135, 7750078.367587857, 7750245.3125, 7750440.625, 7750707.184311815, 7750856.25, 7752450.0, 7753061.171918027, 7753100.450914994, 7753248.4375, 7754396.875, 7754588.613781477, 7754607.8125, 7754871.3359037535, 7754910.742297682, 7755763.755689601, 7756004.1300000455, 7756175.0, 7756643.618776319, 7756851.847231678, 7756929.6875, 7757149.99169496, 7758418.75, 7758446.261789202, 7758489.0625, 7758546.875, 7759284.534845694, 7759685.9375, 7759805.9812986525, 7760717.840660086, 7761310.331418896, 7761353.072594893, 7762537.8286402235, 7763846.964723356, 7763977.77729067, 7765689.441168108, 7769610.9375, 7794065.625, 7796305.363472566, 7797587.5, 7798560.301674853, 7802365.440915215, 7802728.125, 7803097.641178338, 7813000.426509306, 7813575.811052327, 7814826.748936308, 7816443.0941182645, 7817021.875, 7819819.606445399, 7819985.9375, 7820034.375, 7823021.707319076, 7834477.827786832, 7835393.079065192, 7837914.0625, 7838457.775582233, 7838478.125, 7841484.375, 7841497.371196724, 7843410.9375, 7845686.590539292, 7846095.300969126, 7847147.704522872, 7849250.0, 7851077.247747194, 7851499.44987528, 7851989.239538956, 7852289.323852244, 7852325.685089746, 7852368.659315139, 7855122.415995678, 7855257.8125, 7856728.125, 7856735.9375, 7857330.1725288285, 7858498.43489215, 7859760.623773478, 7860282.498188883, 7860826.5086646825, 7863129.130063758, 7863661.514964399, 7869633.8714371305, 7869838.370685284, 7870042.1875, 7870184.912076619, 7870250.663541263, 7870292.886122798, 7870663.007912161, 7870672.980222534, 7871391.897805127, 7871512.5, 7871658.136842134, 7872009.375, 7872069.168563055, 7874543.973608468, 7877821.875, 7877857.11876352, 7878331.25, 7879093.367957695, 7885746.800411886, 7888099.652273307, 7888228.079157135, 7888489.0625, 7888492.577397735, 7888651.444731258, 7889121.875, 7889166.230930289, 7889206.178702815, 7889288.070617876, 7889387.5, 7889728.297434725, 7889775.0, 7889854.455078821, 7890068.639833927, 7890515.329414173, 7890549.198043951, 7890687.571310293, 7892163.278724491, 7892820.3125, 7893120.3125, 7893612.013762249, 7894818.75, 7894841.369281691, 7895068.156303659, 7895825.7303460315, 7896525.0, 7896547.1850189995, 7898704.6516973125, 7900245.3125, 7902133.451094716, 7905581.7264990555, 7910464.662680787, 7911104.6875, 7913350.457529907, 7913604.749140526, 7914452.444140734, 7916385.967281618, 7917382.2976986775, 7917422.175632744, 7918226.5625, 7919004.497367726, 7919279.684678575, 7919815.368590222, 7920631.730285194, 7921129.318665599, 7923373.6649593925, 7923550.0, 7924798.4375, 7925242.075332047, 7931850.455108259, 7936566.229765094, 7938015.625, 7938052.9689329425, 7939354.6875, 7940843.3463576855, 7941258.401632567, 7941317.886136836, 7941378.125, 7941418.069667323, 7943493.218433226, 7944719.867958274, 7948399.500615245, 7948620.3125, 7949111.282873487, 7949606.736957877, 7951014.283916971, 7951683.204373647, 7951845.987986363, 7952038.265852225, 7952621.875, 7953511.823350202, 7954160.9375, 7954705.691490293, 7957743.356268831, 7957796.730695689, 7960042.1875, 7960187.5, 7961037.5, 7961599.829776969, 7961610.058516011, 7961964.0625, 7962013.229136954, 7962023.128977413, 7962042.952769685, 7962196.149603769, 7962344.844082658, 7962361.072628348, 7962892.1875, 7962991.024148195, 7964050.757773685, 7964072.653292626, 7964088.594879111, 7967741.146270646, 7968180.244225474, 7980613.252782537, 7984068.7101868605, 7985231.941685334, 7987100.216017378, 7989462.231610007, 7989972.280420932, 7989978.5233031, 7990038.043948057, 7991565.625, 7993242.1875, 7993432.926165188, 7994181.4916844135, 7994316.381683397, 7994405.029836088, 7994464.062303155, 7994520.204538801, 7994793.75, 7994797.183684543, 7995162.5, 7995475.0, 7996746.4146599015, 7996862.5, 8000703.493756055, 8000715.819911507, 8000980.699664293, 8003905.708929104, 8004881.25, 8006074.914328438, 8010338.917753935, 8011549.143193641, 8016806.678089619, 8027613.105833009, 8028650.0, 8030409.720423965, 8032667.087659544, 8032745.142114362, 8032864.588578428, 8033106.065941033, 8033450.615669577, 8033985.280779378, 8034001.903718921, 8034020.133719459, 8034250.723743462, 8034268.9367574435, 8034339.606566464, 8034453.125, 8034462.662220738, 8034496.177108894, 8034838.5580433095, 8034864.0625, 8034964.0625, 8035168.883915487, 8035271.611536982, 8035373.4375, 8035479.6875, 8035615.889385601, 8035620.001503609, 8035632.68360025, 8035994.765945993, 8036143.75, 8036154.567750572, 8036222.400010459, 8036703.6948588155, 8036841.5799725065, 8037029.272782333, 8037274.556688277, 8037315.625, 8037930.423235701, 8038180.751000731, 8040965.625, 8042034.375, 8042093.05865667, 8042189.0625, 8071864.0625, 8072939.0625, 8074768.75, 8078612.705601422, 8080479.6875, 8080874.6597836055, 8081506.25, 8081589.525314105, 8082636.924553777, 8083713.734663586, 8084023.712908613, 8084175.0, 8085515.625, 8086029.6446710415, 8086496.49834282, 8086768.274092173, 8086996.285143871, 8087667.1875, 8088269.845623528, 8092027.676915765, 8093537.5, 8105015.543835881, 8110346.766116745, 8112458.856731728, 8114606.155875952, 8115064.0625, 8128610.024724329, 8129178.331946492, 8129850.0, 8129851.093343973, 8132350.0, 8132429.6875, 8145832.320842009, 8148210.56610058, 8151401.2052775435, 8152587.687757387, 8153509.871368095, 8154453.05790637, 8156524.687720689, 8157294.059460098, 8157392.482174061, 8158967.076356187, 8158973.4375, 8159658.784514776, 8159724.902000899, 8160468.96136811, 8160628.125, 8161177.58342915, 8163577.954757197, 8163624.254378346, 8170136.668351611, 8170154.697920787, 8175515.381803362, 8176331.478224159, 8176346.65253669, 8176375.0, 8177075.040348873, 8177385.518238868, 8185541.2784154285, 8185678.125, 8187094.554928348, 8187136.859294199, 8188493.292808005, 8190404.6875, 8190457.8125, 8193799.829186149, 8193961.908279182, 8195400.0, 8195879.6875, 8196840.187852519, 8196843.9632122135, 8197721.559286517, 8201846.866328681, 8203739.770145149, 8204337.5, 8205133.452182114, 8205155.5631583445, 8205291.645054006, 8205560.606948459, 8205734.375, 8207690.625, 8208309.342324945, 8208316.0033498155, 8208327.311755794, 8208463.347687547, 8214007.376138689, 8215885.161532958, 8215922.598719369, 8230896.207610635, 8230913.608407501, 8232364.584178031, 8232503.125, 8245549.958159141, 8247398.041751189, 8249829.676602875, 8251287.5, 8255440.138277262, 8259976.299027434, 8260277.71527197, 8265530.864388351, 8270400.0, 8270685.026851684, 8271217.1875, 8272410.9375, 8284662.5, 8290743.363028647, 8291820.224573052, 8292237.5, 8293211.167927741, 8293252.614377276, 8293652.285751545, 8293744.6977906525, 8295203.861867485, 8296500.162953779, 8300556.25, 8303388.598264157, 8304411.525594161, 8305104.134578498, 8305418.75, 8305692.88197683, 8306510.639612111, 8306573.329750888, 8321081.110749299, 8326606.25, 8327407.728186796, 8327466.587862479, 8329826.4201180115, 8329856.25, 8332796.875, 8339515.625, 8341903.319097135, 8349914.0625, 8350084.375, 8354099.894491809, 8360160.698128858, 8360460.210885467, 8361171.875, 8362819.977839973, 8372210.00731931, 8372252.918461909, 8376237.5, 8377485.408195675, 8378743.536686754, 8379017.058743727, 8380059.182233053, 8380097.443632279, 8380211.537399302, 8380396.366888785, 8380544.880787448, 8382610.930240449, 8383236.830379929, 8383497.491307224, 8404791.896852152, 8406771.126327692, 8425583.632810628, 8429670.3125, 8436851.134053467, 8438351.996750046, 8441075.625125593, 8442150.0, 8442840.57774622, 8443080.200268514, 8443966.382944206, 8447785.870395029, 8448176.5625, 8450431.03828714, 8451871.668428889, 8453700.063457666, 8459296.787009295, 8460424.269801406, 8465158.74533213, 8465671.875, 8465892.1875, 8466281.568303298, 8466724.778485753, 8468843.560980925, 8469274.746295588, 8469433.931447353, 8469503.99717473, 8477192.289322818, 8479728.641482055, 8484629.371171677, 8490781.25, 8493155.38571196, 8493520.931795057, 8493740.568392662, 8493779.611123417, 8498263.220827809, 8499420.3125, 8499748.4375, 8505214.0625, 8509420.283843402, 8528564.0625, 8531051.5625, 8532026.21361476, 8532665.177242529, 8533081.050351782, 8535339.18293941, 8536887.129300037, 8537079.086715978, 8541371.544364579, 8541724.74027905, 8542932.802075792, 8544902.603472825, 8546615.625, 8546922.241841767, 8546998.4375, 8547024.4173985, 8548416.224006847, 8548448.759514904, 8548966.40653368, 8551330.554683553, 8551655.63021199, 8551657.459460486, 8551726.558166346, 8551781.125425369, 8552534.375, 8552688.311964974, 8558584.375, 8563812.27477724, 8576791.7461859, 8589616.623222934, 8590852.397531142, 8591295.218766691, 8592248.141224755, 8592492.1875, 8593396.875128906, 8594851.750347517, 8595279.6875, 8595335.9375, 8595354.721362526, 8595727.778364094, 8596248.787387744, 8601990.796734447, 8602599.790778223, 8617898.626000296, 8619418.26532886, 8627744.582501933, 8629295.3125, 8633828.125, 8638245.3125, 8640287.270179747, 8640802.08570968, 8640802.356560312, 8645118.270195886, 8646650.0, 8646673.079613619, 8657991.733487269, 8658635.380064398, 8659631.25, 8662843.75, 8663516.156424569, 8663640.48324017, 8664441.985154655, 8664857.178794442, 8665278.262525298, 8665829.688744871, 8665956.55124589, 8667798.329185853, 8667840.447895931, 8670643.75, 8684040.625, 8685804.316060007, 8686507.555321159, 8686624.852552086, 8686746.875, 8687211.69444171, 8687766.991590912, 8688346.875, 8688360.9375, 8688364.415666867, 8689513.14761737, 8689935.9375, 8692014.258916214, 8693173.379234724, 8693339.676691428, 8693927.599376312, 8694378.106616115, 8694858.167720344, 8695017.95806759, 8698308.934744604, 8705651.970399614, 8709962.265518904, 8710829.6875, 8711543.75, 8712042.1875, 8712085.9375, 8716684.248887716, 8717022.86801082, 8718372.950182302, 8718838.863707772, 8720847.099379465, 8721364.0625, 8722515.076779116, 8723070.665415222, 8724303.865735993, 8725060.9375, 8725775.65043942, 8726815.324949536, 8728276.311386526, 8731256.066088917, 8731754.6875, 8731762.681794446, 8733589.934464674, 8734556.804322273, 8739374.932195317, 8755346.875, 8756826.5625, 8760340.232365599, 8768879.434961211, 8768952.92812782, 8770408.686086658, 8771112.5, 8771397.159052001, 8772137.755632782, 8772245.776515903, 8773781.25, 8775752.338522637, 8775776.5625, 8776012.5, 8776711.107768811, 8776874.517510163, 8777496.875, 8781192.1875, 8793182.137152832, 8794139.168833576, 8794158.982005117, 8815996.99805552, 8818007.8125, 8818743.75, 8819201.156785822, 8820187.5, 8820620.597491471, 8823075.95063051, 8823080.980101991, 8827761.239154298, 8839873.091851424, 8841996.676316611, 8852019.144890128, 8854496.413184946, 8855384.613568082, 8856802.018977901, 8858787.5, 8859323.630308297, 8881765.625, 8882898.236335242, 8883477.917844303, 8892304.834979787, 8900000.0, 8902658.884373825, 8923385.9375, 8926095.919748312, 8934684.977074321, 8969815.173492614, 8980581.06108464, 8980914.627577063, 8985014.352685865, 8990751.061232757, 8997203.819458406, 9016098.306474498, 9019656.067106418, 9035296.43268895, 9049628.791743651, 9050717.978974681, 9055078.6004882, 9057700.692531321, 9058228.187361088, 9061433.320256447, 9061809.375, 9070601.186036317, 9070882.357699811, 9071331.25, 9071344.98586702, 9079860.86762185, 9092300.0, 9099575.660922006, 9099634.873581303, 9137253.125, 9139618.502628677, 9148344.787658093, 9148369.843847334, 9159593.370027365, 9170344.604629526, 9183112.5, 9184646.914079921, 9185867.90215353, 9191982.8125, 9205332.8125, 9207868.286894161, 9254620.635153024, 9255599.064072326, 9260996.875, 9269225.0, 9433333.9817471, 9483612.5, 9526911.742928276, 9556560.059676562, 9557409.252948303, 9647277.076514388, 9672459.027144054, 9786801.5625, 9789956.131183643, 9811607.79114651, 9815795.3125, 9842539.0625, 9844453.125, 9847085.591312263, 9860635.421616273, 9892628.73348075, 9893091.450301623, 9898203.125, 9918034.375, 9927746.374855815, 9955579.1563583, 9959290.230432335, 9959545.024219625, 9965115.625, 9965170.259803277, 9966174.23769934, ...], [63.52741669642774, 57.34758186725378, 19.98361877224261, 16.67170915174254, 46.68090579613951, 88.42620914703, 19.494475920621152, 96.33918254873991, 19.055328733887684, 9.671387548321837, 18.265618765492793, 80.77010407615269, 33.00878402442859, 47.95868637622986, 50.23996371492012, 11.560036321503947, 17.384690237347925, 14.57942073329473, 73.2364908621488, 57.90038382740751, 26.68593220490107, 65.24785282182138, 12.385443150093545, 22.26916253992543, 59.09187443960673, 6.298979921756498, 13.548550450214677, 30.68835724149486, 114.55616225946206, 5.668977061290494, 16.746170838850762, 48.7102392568478, 5.795003674816309, 12.908298991292893, 62.44967319824924, 46.58017182968558, 7.323427396498298, 28.462452205511603, 52.647518055862, 43.273967736233224, 7.383301052408796, 9.094263515431187, 59.61596467956417, 6.159998500855343, 26.215476353981877, 50.09297591303243, 18.759565058267203, 39.26247331389019, 21.324999451282892, 50.07219274097414, 27.793428013949715, 10.169687267071373, 32.9463108285272, 26.149682565902104, 82.24642408098434, 8.730295340116376, 6.436252198831767, 71.73134365244742, 46.334786914130106, 11.05170415164226, 35.80063049220928, 36.01815154248722, 92.8764404460594, 78.58286378284683, 12.382468296809519, 14.259060747485933, 55.37046816392203, 7.387386040020888, 170.2741692204614, 23.784516790977193, 73.47146495781561, 38.17356470718693, 93.02959300523617, 140.63867637901973, 55.07860026587909, 12.945164408038519, 39.389456059822564, 158.84364671389315, 57.231402161141894, 5.938049355312671, 6.742475312442032, 23.120570326682326, 5.558389620556067, 118.7432327451111, 22.70515745154423, 12.321008473685804, 36.37420806813806, 80.62429357790606, 56.58939595836347, 82.97615104186488, 67.14803245966874, 76.8410449641251, 15.569965397298658, 74.83107400049762, 60.99977472186464, 73.82030142403286, 6.793427562073198, 6.017589838308137, 15.479093306976782, 7.064816500348304, 95.21999518408374, 7.393165928708897, 50.71629415748546, 20.13344653456645, 13.693008506452431, 48.162635864931886, 83.79936084745079, 7.208002185476661, 13.213081555466909, 55.03401513475108, 127.70787988709392, 9.80686745026929, 13.443679660812945, 33.705498073464625, 55.03322504548811, 6.75581609859193, 8.645409304742133, 8.70676581594313, 42.09076816580833, 31.574346949520752, 55.48790695995582, 6.136627786028904, 8.451374437966402, 39.711444768516884, 7.133764884401879, 5.646579430751732, 11.423285865221239, 55.19995632969585, 8.475763887737404, 7.658860974779668, 16.766735479762882, 20.394283212656276, 28.77182804935501, 67.45802949430879, 8.515262066121492, 7.311891138116661, 67.55462731162727, 70.31690266723346, 19.462949842050016, 129.8664158285369, 99.38741176862587, 16.537803534024775, 13.259566947382934, 52.776874011936705, 35.74570067916618, 19.290331408633755, 134.14040875905357, 18.89450052962454, 25.447414305552535, 38.20229933768379, 25.208402710429592, 88.92087527459337, 79.51993871623137, 47.57735818743654, 42.56910303732645, 128.5052746447413, 27.671642142554767, 186.3591599021537, 52.67967043200605, 58.447325965154796, 22.381994336679323, 18.15712475414405, 67.78222196199177, 6.6086608608396435, 37.13252809640207, 6.601766494878785, 84.1903863101083, 8.113838306154081, 121.48393981415938, 95.15496208641437, 49.45445427054584, 41.7759522928854, 50.440966443098986, 28.816312354741353, 11.70808591781833, 12.399145574698544, 14.909760129481137, 34.26419073604798, 14.268217186722326, 51.06631146693395, 123.81677041247922, 30.780951982519717, 73.61808743243424, 18.6672333784082, 17.81701589479393, 116.09066714135494, 33.09036702916829, 96.18364438017342, 16.879790863630245, 32.3298231121358, 23.931817057326388, 28.995756007823676, 36.433752974751926, 52.499133437350096, 57.53814008892098, 14.144302233369277, 19.85644511457626, 7.254713105448755, 29.867080385432523, 18.039120476896173, 63.942309831310354, 74.46450306152684, 12.387665976080212, 53.40813238137116, 22.023732625590736, 9.770115330281309, 120.4422351798579, 10.179010126576157, 11.472657407367862, 11.497130839168646, 25.37664336342987, 28.198650559475794, 9.188494937553331, 44.87986480722519, 128.550989898313, 22.517444270419066, 94.05174222935077, 35.50226389462177, 33.48836199945531, 10.252101565481928, 81.46967364335036, 14.014691486222073, 68.83817789206003, 55.20451004047104, 57.4686221327171, 12.376522012505646, 9.858476009760336, 53.52075671857552, 52.67761785916914, 82.7935286553432, 16.03400072432217, 19.562314623697038, 11.14662375821955, 49.42737670516976, 9.290409742529775, 50.998143134615354, 108.29660700421509, 81.85189194926875, 47.565426079086855, 24.13052495019845, 149.4379443852771, 16.931802958087736, 29.9301199111265, 144.14649225173866, 23.324995689476783, 74.14832937602785, 31.55796544122119, 19.045384997973585, 76.41892496836098, 55.212392612548015, 7.968445334578314, 37.183020735804234, 57.354094379253254, 9.029468449327494, 6.07955731649008, 30.594429159862504, 131.0075611582114, 8.50792392250125, 65.00135245479817, 127.31445054196712, 147.86954168937658, 65.0172146650399, 78.14237919419888, 101.40153140448663, 95.68446576032962, 25.92149675891735, 93.0249520628069, 101.8385326522322, 50.302023939198385, 22.76393295432655, 26.208021658146983, 20.799542989605108, 82.89088513721762, 13.195031937097339, 66.42409539465373, 18.35477456231591, 50.41090938060664, 19.758957380136806, 27.72313260177611, 104.52925982433183, 7.84437231702097, 19.591692323305114, 87.76624047056058, 8.033912023247868, 84.0210065758478, 131.45976526725863, 11.895873787314407, 35.03276438856066, 45.69370321666378, 22.108274995250852, 6.230317684772917, 28.88650966338068, 6.160770644855315, 7.466700222479894, 55.35532612636092, 24.095319730908425, 12.783478739495411, 16.00533991439783, 26.396239575453876, 25.231007536093202, 32.42967489232514, 9.269528385991634, 40.41504485854319, 14.204789966606056, 107.71552707908977, 24.64542831237702, 10.935285898997977, 76.59537136573434, 17.43738528487581, 117.21689648851473, 11.75972863148504, 269.6234115178686, 79.70219652106437, 28.700351189256047, 11.529309945670484, 56.87379037311484, 76.85595786016927, 47.69196853198223, 46.49560898199395, 194.6210670543579, 7.690281743400322, 112.90186362066021, 37.89004972595083, 56.524281312840785, 17.156005608751478, 91.51986403225368, 123.07990782342581, 38.3371439904762, 11.11223766459487, 13.171278380800675, 57.7918704850129, 14.463872696463673, 17.279097893929226, 31.2830503062079, 6.485790130637294, 106.77567426236187, 129.13473865614617, 74.53802879591699, 53.018321415716976, 6.104881008669254, 35.453723545524056, 124.65888712143699, 118.39699514737725, 33.48066471300211, 27.528901747856363, 51.87432399781216, 6.0974796200958785, 108.75849538070233, 16.61218563926551, 37.50067562188034, 62.008964899831575, 91.80020018709837, 71.63233058931324, 60.863820861503854, 16.245560140926322, 102.73640196560731, 25.524092761700736, 9.7201048941472, 170.04653766576627, 5.348351019840956, 27.799617744327243, 31.10564897838593, 222.71383077471683, 199.46757896862687, 35.255413777536276, 51.02266658682089, 86.9352206026599, 19.942085999313896, 34.76840253859735, 68.09156566732496, 118.38014972923416, 35.42627715011943, 12.003287843641179, 45.133959135770624, 163.29627153560273, 97.62793957632685, 149.97889643740413, 80.25977107682644, 79.65982652025224, 8.905869498074392, 91.67822090137622, 8.429795604139786, 18.405724928081845, 6.472968930077218, 76.13664692608869, 44.39950807592863, 65.994346016337, 40.78885639803863, 89.17116502998891, 8.285198732486306, 159.69003876847302, 59.08062719176969, 33.106229909268436, 23.738090769878596, 32.545265019575396, 21.457632188831194, 19.771637390616245, 64.71242990109312, 34.77833050421707, 58.44435124406555, 492.56584038322865, 17.30974435856757, 13.444596011852946, 23.883273984353348, 83.92275076771375, 16.34087366859119, 139.37371419241305, 8.521059291572827, 61.70624009644086, 115.98482040464478, 21.423814673294867, 73.45318893357562, 5.682867696061117, 22.98217552585352, 6.433929401502332, 80.87828025190079, 182.19402701157085, 32.7507082730972, 55.819561177154256, 169.17160449451043, 57.468746763160624, 52.403667455572126, 12.154464445156334, 37.831978224349356, 88.66558428040918, 35.615164098809316, 5.521905741536778, 34.036357698081, 32.136326208974516, 18.93078789647732, 53.648097234940934, 41.24261386985459, 143.32931054623478, 120.48231092992849, 26.832210928042464, 82.5045670674089, 8.72372200902158, 96.19068579610979, 122.3441356932782, 56.57396882970944, 11.649519162876707, 27.835549243636425, 28.824138650989976, 141.16986297415153, 12.327955521153315, 26.301022724196674, 63.37848115461507, 11.92702640302152, 6.49679753092043, 95.14064638472198, 7.614044819611052, 8.931002686087362, 5.630895219930805, 44.93360392152886, 5.800044783484128, 28.469418042900315, 43.23642645225998, 9.773451039585, 7.475070252332028, 122.17095661331426, 38.994471092517486, 57.47423228860723, 48.85792357878365, 58.83727473205335, 30.289953625303063, 161.90006941275024, 19.499715514443004, 90.61155395479591, 37.266095766452494, 30.570564973642846, 10.001374236055243, 46.69144409228703, 23.09814459834358, 29.1359551284269, 174.2242617922631, 21.49923982781353, 88.31161998684689, 37.861297991780866, 17.1913140441728, 8.407243006500757, 25.91499688134953, 8.679298820267128, 211.258741608461, 88.2111583213941, 19.895059878744, 42.57603398413993, 88.75478120060502, 37.51989658342857, 37.27727483762732, 41.05883797808874, 45.52736172016709, 52.68926378287432, 55.48714496749814, 51.913731446419774, 38.15348664249553, 18.707547633632025, 10.677438924181583, 12.579595713908871, 39.11669683895224, 7.003532394900836, 97.29770030924686, 40.03210260145546, 21.044170230106232, 94.71487493440753, 187.9237097568601, 8.965006806010487, 73.67265294854013, 43.21670886427495, 24.073635792460834, 7.588901143084818, 25.003760325884954, 11.483021266946299, 67.13884411353575, 18.948961346117862, 8.509070252576239, 6.877187932242822, 73.47286912007036, 64.23334113857867, 50.74972689282401, 15.950325471162834, 18.902974008515624, 16.429400073910884, 96.19503805857157, 6.470299501639442, 113.26603224406531, 104.41443928285575, 39.20175360134654, 43.70345033202064, 121.23789082440159, 39.70293453713506, 17.112008598175716, 15.740383596264156, 35.27722820721968, 5.673166900172168, 49.943048876576306, 14.624723624948873, 25.959519667698316, 179.26107826423626, 16.869880637426547, 82.51820986896126, 55.22999102482582, 40.90960366360209, 173.14771309942068, 25.56074114934868, 12.079485346045129, 25.354031539815473, 17.954951127063293, 21.36125026849328, 23.033311976073378, 78.14936388487067, 85.53949748411722, 15.704558292997207, 110.75169454670547, 41.40147532924679, 199.17849147336224, 10.187825441721197, 27.486433683159298, 72.71719094031091, 29.219060452047568, 15.477741289065005, 24.22894675022227, 89.82807309997229, 50.90851799852119, 51.763290995257876, 7.042031425248775, 61.28303568711686, 49.548371635452426, 36.95973732335581, 124.55342258327548, 9.818630852043379, 26.52810212012958, 91.09532033354412, 12.538644671223404, 55.61228484124216, 156.68411929959638, 97.71452360550606, 10.428088394322845, 30.37489221936904, 83.1344805520764, 29.659275901879425, 57.23917201165466, 133.6236619893337, 54.25874944568514, 93.50656569834933, 15.787693763771717, 67.8261498764075, 162.18914809290297, 73.49864493559375, 11.937358653227212, 8.888021365390207, 197.22387173671044, 9.575664430092363, 79.47061487353336, 37.91457615820375, 62.618965302848494, 45.98732961544901, 21.736846928575094, 45.68977348669149, 39.44103319927925, 21.830013778602517, 85.60580696317587, 30.2643396577248, 64.0088470445602, 38.9439063843081, 21.31277980677721, 111.73927713817602, 29.191791615531557, 18.17241570176104, 15.79367443649934, 79.06100400763181, 16.898891269251983, 176.35710172552237, 180.72338113298815, 21.576721818123378, 140.12084474023106, 83.4744498422055, 8.388426575796178, 17.244230542980205, 39.7288704625786, 6.439228132365524, 29.98361585176341, 7.713410562278733, 26.505404865600575, 53.278906265643954, 10.315167519429965, 25.333997599172804, 9.516758933162276, 64.02725060334573, 21.088195696510535, 25.5629219539267, 10.132959984139696, 40.24963180164371, 14.981377901615636, 19.2095894564926, 51.881374988438104, 24.794408124130044, 88.40053478079943, 7.6178966652256115, 52.24643259941675, 27.395138258111736, 62.096794539192565, 15.931425829844047, 29.957543132681728, 13.444836316255545, 131.19921357469187, 39.671342381226275, 24.908692701251432, 8.87662346262098, 56.995198813499066, 50.23424157758525, 47.64677611644328, 11.478169109519996, 23.55207760057861, 28.354505684694796, 321.2849840501282, 60.787614090513735, 168.8571126094571, 12.841890148359916, 18.337478519075155, 23.368178060704093, 35.444280387000724, 49.63005968296271, 67.15096591126346, 98.78267283316626, 24.625713073998067, 53.57794942200432, 19.205405167757984, 207.5393710455499, 199.15908777609906, 12.889850357150076, 43.01995597220369, 17.388741791329238, 180.2962959888976, 27.72309014361537, 13.620931305483452, 28.311069972442805, 86.5825236952152, 193.99328822135416, 167.3204848194647, 77.23955779025913, 10.57410372718459, 40.1643591457234, 6.158614817549961, 38.529699941090755, 40.11045824592024, 46.28606775083069, 32.272863109404014, 27.16664885704038, 52.928710409844705, 6.810398454939516, 73.27224078932963, 5.7543874895122835, 13.022492428192077, 124.16521387480631, 45.60307791570829, 97.5005702902243, 13.798027331115307, 89.82722927710032, 158.07434666672555, 49.73840023305523, 84.74612173392748, 66.04078193462041, 84.03483317380667, 104.00232769356664, 104.74906458499093, 88.30296775775057, 10.304100788114383, 47.01758739772723, 32.973358273661965, 106.58925530171663, 122.23330258651868, 9.501098901198006, 46.766578732846654, 53.17370123639661, 26.59966875368965, 14.101413125253147, 19.495682790901075, 82.61859744768422, 5.910781717040329, 6.896670205224262, 9.162663172351522, 103.8692615015413, 21.20567135540812, 254.08063428768236, 26.215889400893197, 25.22447243431416, 17.66558626497121, 12.215592839204385, 13.303886085933836, 22.202469285001488, 69.35131930401789, 19.952944647683637, 27.500942405491408, 23.870942061006474, 6.937637454323881, 8.773885400214654, 42.45221725475865, 109.24534112751482, 16.902762852418064, 321.13751525484616, 35.982142503018956, 81.11033694521906, 37.47460117092906, 34.91261118537163, 67.78927028235347, 52.03460906845002, 24.94803630624784, 22.860086492096887, 7.626351626503201, 26.897860958119306, 6.625987763431392, 12.984412241414484, 51.41451548690254, 136.8899824974222, 27.91646553479405, 69.0820404662335, 25.280037730725542, 24.360682493392748, 108.42119413417139, 98.81483742064616, 28.382077873491035, 79.93508129148182, 8.126093654867026, 44.25503121840262, 295.9566432262146, 68.20139839088773, 80.32805980172587, 27.10000594113991, 38.26935880502205, 200.94753424345288, 107.7510745917933, 29.176114393490092, 86.26494302779702, 28.556935978584658, 68.29023499974022, 9.052852027324606, 13.471440118623256, 38.675591551303874, 146.65889816059027, 176.5113281379112, 13.058245035770259, 6.699245435935797, 22.547581509010357, 103.3742669782618, 55.94159575015177, 121.72503051078795, 11.753980907244532, 28.804566543486576, 13.10537322939354, 14.170849143749503, 30.477080185698313, 19.58910904120347, 54.53976278697018, 20.375958791829397, 26.482960492123865, 54.62037781124545, 26.283940961119967, 94.6038317556409, 30.132734047715793, 157.47221882896733, 24.75534313677959, 22.099204956626718, 135.2067766873672, 52.54152339127056, 13.422692512464579, 10.694172067231987, 35.37456928753671, 11.127908296345508, 116.60674640111463, 156.39398725016684, 121.57480790472147, 6.492412611709419, 170.41397281343237, 127.61408069394315, 15.6391399471617, 24.983964708886337, 30.81284404050663, 17.816125273510696, 117.06210373985743, 41.098482172283546, 58.90628421748784, 58.61910122123601, 154.6387595353063, 19.756416537080018, 8.75643646952227, 5.060273987570512, 217.00659396525177, 45.101638466658194, 59.80402725314623, 8.900701988584084, 138.95474953902024, 169.78449469182206, 14.055081127774189, 5.8035651847795675, 8.182395813052173, 50.07694967478146, 43.83825124134559, 29.557090564557903, 17.043645677982944, 26.552635103661462, 49.237111873770395, 64.24049685199475, 55.023565036198754, 19.78316874772035, 6.447517996687942, 171.91690170652205, 83.30855519635244, 12.560462358953833, 28.46742619722541, 70.53618792770497, 71.62605029657782, 17.978787554208438, 15.607808739023767, 39.25473055773941, 5.95669512160375, 14.723984624315712, 83.18805014151796, 68.17253038502284, 14.871898599121703, 37.38694608793209, 12.591813946970003, 43.75029736885791, 9.701886908403809, 16.933720460061465, 42.373282942205165, 40.05664012665717, 61.38252659251668, 53.886173593484415, 26.258868239634275, 13.139677031635646, 222.3007808446033, 165.19568327408783, 38.7037814267574, 92.08989328092579, 8.907217096932904, 202.3796013214136, 14.48434619423633, 42.575717596136975, 45.69092097383705, 11.463800101746365, 24.3959523383787, 128.6750286890179, 93.8674949924685, 164.88839975291356, 23.528998765912693, 17.57997761008525, 24.93240078388662, 36.18858785743499, 123.00873026623702, 23.13889974300944, 24.376534481208655, 72.60374886585345, 19.795099051828654, 37.618686013134266, 208.1211545163053, 63.13387323753511, 17.064104704656348, 83.79640188592917, 51.89778032651208, 78.96413379873496, 121.4405163908536, 9.479647931327575, 51.41032497425906, 28.82928439611979, 29.00397812542465, 20.089176372281397, 157.21170947411005, 13.628983579329898, 178.92396707550338, 64.08644374254406, 107.35458243760263, 22.48820434974386, 90.33796366699836, 21.826598357395227, 62.468228132823974, 24.143022211918804, 27.10336600180077, 47.84872870825599, 147.64544696958063, 202.59317262602156, 13.431856538779789, 51.376576963581385, 55.09939575029507, 45.316491410582735, 7.674494219684616, 101.72261308530389, 25.10103209667007, 10.8186446324748, 20.587615599287194, 77.17323570990332, 6.038522395061803, 66.30441054463101, 26.36622219691942, 43.41825958893725, 131.55264089753217, 48.208975831100965, 17.644214258701492, 16.176348479388494, 8.940705823609859, 18.468855132313085, 7.556525609804327, 8.192171587500342, 224.05784316047834, 18.28372024649285, 37.220030728746934, 23.122501686675243, 44.09980634306412, 122.34184979168643, 9.801112812764488, 56.432023537687385, 42.46721717972928, 21.956162099952916, 131.5775312095166, 47.51594910608687, 11.020211593382124, 31.39273506861034, 190.77793072632184, 5.259317171875497, 276.2836220244803, 56.9195124754684, 5.894966210631885, 29.85279753842198, 22.780266242886952, 19.643080936107406, 245.06285247767497, 38.70792358672925, 18.606884545864997, 73.26355707055143, 78.32511004415056, 53.229593181256064, 20.244165485498684, 64.62060488199961, 39.34210271761219, 84.10539244567558, 22.62842525533734, 74.7092684174266, 102.43166254883633, 208.3975415837538, 22.21464460295595, 54.577791764080246, 112.56980237965905, 91.11852754370693, 84.294847505662, 43.112016393490194, 79.36175694288956, 66.51696331848085, 29.157661523559067, 23.178157598875902, 5.895704037641897, 26.577766980969628, 30.261398836757714, 60.76295614550732, 81.94572981869808, 86.20325806591165, 23.173641553582463, 105.12451237503844, 23.901606946813903, 98.35488058479899, 7.584288729788007, 40.662201571829264, ...])
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)