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 = 45349
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);
([4508448.234817009, 4525662.649372791, 4529085.497506048, 4554180.375247385, 4557239.172206553, 4557490.766506883, 4563515.625, 4564120.815428437, 4566868.75, 4566873.4375, 4567509.375, 4629556.091128763, 4635393.75, 4635442.718468935, 4636655.690078248, 4637253.266905102, 4639490.625, 4639690.800652196, 4639891.434201347, 4640304.382394389, 4640694.039647637, 4641442.915055784, 4641668.75, 4641829.124908159, 4642141.041146311, 4657784.986863242, 4658283.256026653, 4659686.921132857, 4660429.643754438, 4706595.689188161, 4727358.380485758, 4727634.151556195, 4727644.639732772, 4728170.240805893, 4728473.4375, 4730201.860526125, 4730386.237443996, 4730973.111430643, 4731445.253987797, 4733012.5, 4735641.097203955, 4736866.081604873, 4738436.804585085, 4757968.94042531, 4758357.389577094, 4759188.707705552, 4809698.4375, 4810180.954212493, 4810193.75, 4810505.606338627, 4811518.011786587, 4812150.0, 4812731.170079997, 4812917.1875, 4813619.279095001, 4822650.0, 4823809.375, 4827253.125, 4827508.539464814, 4828785.9375, 4828791.215974677, 4829343.991842413, 4829460.7666340545, 4829520.982448296, 4829593.75, 4829985.026194197, 4830103.625452815, 4830155.784209378, 4830160.056201036, 4830208.493235723, 4830254.6875, 4830347.820580751, 4830474.408642336, 4830577.148974393, 4830600.0, 4830938.839160139, 4830962.904315161, 4830967.576060255, 4831059.375, 4831135.522232717, 4831171.564179624, 4831387.896061164, 4831390.899264409, 4832043.75, 4832147.56877751, 4832513.708733989, 4832750.0, 4833017.8150348365, 4833296.875, 4833581.29480417, 4833582.8125, 4835132.949067855, 4836078.496184472, 4837207.007209927, 4837434.11432472, 4837610.001879005, 4839087.5, 4839610.643490283, 4899572.916651352, 4915965.022498312, 4937868.5301100295, 5002345.26389926, 5002631.25, 5003039.0625, 5003855.354478243, 5004025.934655898, 5004795.3125, 5008346.707705403, 5027192.1253893925, 5036865.408779173, 5037942.133904375, 5040975.482914464, 5050543.201004543, 5066839.477177888, 5068998.4375, 5069145.3125, 5072208.321545082, 5073790.144275449, 5073822.632145832, 5075293.75, 5076427.620960582, 5076432.202211632, 5078101.280444007, 5080148.4375, 5080627.7834681, 5082701.005777276, 5083206.236621591, 5090680.932302299, 5091557.940907081, 5093228.118915548, 5093609.375, 5093831.043693493, 5093865.414932849, 5094936.391772517, 5095440.36689984, 5095767.1875, 5096461.994012191, 5096695.804993022, 5096709.375, 5097812.4735138975, 5106544.358957519, 5108840.7289437875, 5115800.454906914, 5117675.0, 5134134.497146527, 5134638.232345059, 5136991.6216851035, 5150476.5625, 5157492.1875, 5167609.722484697, 5176696.875, 5179570.134971309, 5208495.254950619, 5210337.231430711, 5212646.70617296, 5214168.338282063, 5214907.8125, 5215826.815157288, 5215830.531289544, 5215892.503086282, 5216077.705529078, 5216762.317879874, 5216794.579176406, 5217454.4292208785, 5217525.278520024, 5217637.5, 5217670.571705656, 5217715.006852177, 5217721.875, 5217723.125443287, 5217736.2477377355, 5218711.33644235, 5218796.595446944, 5218807.821818062, 5218968.403600125, 5219209.375, 5219480.303869705, 5219795.122367944, 5220294.846804229, 5220883.835041181, 5220982.355077155, 5221066.544114124, 6909701.385214708, 6922331.139977356, 7009629.2555688275, 7021548.211286401, 7025436.836235622, 7087324.697047077, 7088644.21881663, 7091171.124537322, 7113789.0625, 7114505.14486529, 7115073.4375, 7115320.786604773, 7115768.4823338045, 7116232.8125, 7128525.0, 7171360.469317619, 7171362.64867146, 7172003.125, 7172178.919660546, 7173395.93066151, 7195637.5, 7208196.219555032, 7219529.428257359, 7219631.228845529, 7220377.419840031, 7220967.7355185505, 7220968.311535183, 7221036.620624946, 7221881.9922800725, 7222366.049989572, 7222660.637363002, 7231150.0, 7237014.0625, 7271567.1875, 7285263.520603747, 7286826.5625, 7286830.291866298, 7288580.6979808025, 7289821.866940656, 7290350.0, 7364846.151719801, 7459065.76109632, 7459102.07880043, 7466254.094410639, 7473497.199874913, 7504263.295694558, 7514576.770777621, 7516264.0625, 7518545.316880233, 7518568.174179004, 7518640.455841059, 7518670.3125, 7519044.676689548, 7522801.3240174195, 7524085.9375, 7525955.9235240165, 7526140.927755781, 7527300.238245319, 7528926.055692818, 7529086.680337178, 7541297.9084005365, 7541392.320745791, 7541667.087893256, 7543080.152632172, 7543392.751017562, 7545555.846194012, 7547428.125, 7548225.623209691, 7548504.217039962, 7548639.057617326, 7548728.125, 7548905.247744877, 7548908.418513959, 7549252.961886474, 7549634.375, 7549773.468070514, 7549784.375, 7549788.408631933, 7549803.804339373, 7549825.873932701, 7549941.388780369, 7549976.5625, 7550139.2591144005, 7550388.848748065, 7550457.528051019, 7550604.180264141, 7550649.978660997, 7550820.3125, 7550821.26431551, 7550860.567584673, 7550934.072633288, 7550942.503106525, 7551046.941260259, 7551064.951662337, 7551160.303268113, 7551394.526114089, 7551431.813429999, 7551489.0625, 7551599.377249415, 7551866.5791930305, 7551906.045098011, 7552385.50588219, 7552688.564749878, 7553548.896553235, 7553569.751368239, 7553782.8125, 7553899.298202781, 7554227.850311088, 7554347.461823109, 7554895.797555343, 7555063.878266973, 7556299.60477702, 7582086.558620691, 7582189.97504823, 7582198.057192005, 7582906.538484705, 7583250.358346647, 7583485.9375, 7584474.894870691, 7584946.273913511, 7584982.7670260165, 7585028.113264343, 7585048.492543568, 7585343.078787352, 7585380.356002918, 7585626.508848769, 7585767.353298911, 7585767.71905736, 7586055.04372301, 7586351.267356466, 7586750.150044744, 7586907.088447834, 7586948.4375, 7587505.346072383, 7587513.963099206, 7587907.617377309, 7588150.4860156365, 7588205.479834249, 7588222.469035182, 7588225.978914615, 7588670.157478231, 7589439.0625, 7590833.874416019, 7591694.773989169, 7591884.375, 7592124.54098668, 7599497.259996758, 7612425.459301443, 7613551.5625, 7614832.279909287, 7615365.506890102, 7615415.625, 7616114.81428975, 7616309.375, 7616739.3572521405, 7616952.46834344, 7616999.0842516795, 7617051.242826378, 7617055.697212656, 7617319.180686894, 7618957.470794146, 7619698.342705427, 7622287.5, 7642596.9661412975, 7644753.125, 7645479.191111247, 7645614.0625, 7645826.645125745, 7645828.125, 7645923.349508834, 7646146.582065255, 7646207.053302804, 7646222.935106511, 7646483.731322277, 7646492.1875, 7646534.375, 7646577.4419303145, 7646584.375, 7646587.5, 7646635.510877158, 7646640.280053261, 7646663.734751764, 7646683.727945409, 7646713.204696304, 7646985.543332402, 7647003.125, 7647070.275259328, 7647142.260469595, 7647169.887039514, 7647343.733124653, 7647412.5, 7647505.860168265, 7647509.111844859, 7647549.98560488, 7647557.8125, 7647674.311194519, 7647776.442920018, 7647787.975421734, 7647912.488553448, 7647920.412910131, 7648074.775286, 7648119.838589911, 7648219.491569809, 7648256.4386899285, 7648277.557780137, 7648586.436638868, 7648837.5, 7650461.373609774, 7652755.8076331755, 7653065.658053013, 7653712.927041544, 7661493.75, 7670365.421952983, 7682797.176966528, 7686265.425414557, 7713318.883234933, 7741153.125, 7745961.175667276, 7746072.98589945, 7746121.875, 7746148.4375, 7746168.75, 7746179.37616691, 7746653.017628313, 7746924.9448639555, 7746983.557049345, 7747049.839337228, 7747228.292290622, 7747312.070331361, 7747504.6875, 7747550.0, 7747800.796006523, 7749465.129755639, 7752239.0625, 7771655.424496286, 7776397.48449725, 7776494.056577655, 7777846.875, 7778987.913991641, 7779451.395891611, 7779715.625, 7780295.382358111, 7780724.9498744635, 7781865.625, 7782176.662326864, 7782315.345299006, 7782344.941321555, 7782367.737158658, 7782429.6875, 7782736.652635529, 7783007.198167889, 7783104.816586657, 7783137.5, 7783169.915056015, 7783454.569837132, 7783670.3125, 7783847.199276812, 7783905.2980742585, 7784030.652726731, 7784878.552170052, 7785271.822125432, 7785363.393811943, 7785527.716629502, 7785714.391059855, 7786380.212205475, 7786393.307709163, 7786442.120469285, 7786518.326233074, 7786844.546263813, 7786995.009779836, 7788158.655686912, 7788658.526805546, 7790310.119330851, 7790398.4375, 7790798.071008458, 7791798.09642966, 7792254.998421676, 7792514.0625, 7792598.385595259, 7792970.06793795, 7793785.094412891, 7795034.375, 7795400.0, 7795453.125, 7795482.038596034, 7795496.851048027, 7795581.690610642, 7795709.658422889, 7795773.4375, 7795925.0, 7795992.8699023165, 7796005.234361194, 7796006.671408124, 7796050.0, 7796079.6875, 7796099.908008784, 7796170.3125, 7796184.395035278, 7796187.972462089, 7796246.467624151, 7796534.332727974, 7796537.722717492, 7796624.060783128, 7796676.362749751, 7796840.0708468845, 7797025.0, 7797096.875, 7797354.746066969, 7797366.923910389, 7797375.0, 7797381.177766358, 7797412.785333064, 7797463.66158449, 7797521.74772431, 7797750.570591582, 7797757.5614213245, 7798159.872563479, 7798382.9678126, 7798574.553467551, 7798790.625, 7798871.875, 7799006.25, 7799103.423122362, 7799201.290805957, 7799217.604596946, 7799625.0, 7799655.102918976, 7799825.0, 7800045.1342126345, 7800099.779703961, 7800215.625, 7800423.4375, 7800774.424277201, 7800802.549079216, 7800888.310528772, 7800904.547726658, 7801006.061500587, 7801142.107256833, 7801146.337768759, 7801153.125, 7801323.4375, 7801377.123506976, 7801424.719605581, 7801564.510936559, 7801673.513173644, 7801717.612144826, 7801729.6875, 7801858.951513021, 7801878.125, 7801931.567223103, 7801965.177151349, 7802057.117568305, 7802193.231110792, 7802202.96272116, 7802551.436183068, 7802780.893443342, 7802883.494200546, 7802996.384174364, 7803010.749923582, 7803621.754654638, 7803812.414385981, 7803843.057250793, 7803906.945945995, 7804146.152087225, 7804887.64703242, 7804940.936136798, 7805720.56017963, 7806761.812429378, 7807121.379481381, 7807749.964509398, 7807954.6875, 7808206.22967628, 7808710.9375, 7808807.8125, 7809300.0, 7809613.168906685, 7810022.1422365615, 7810044.222867978, 7810426.941600822, 7810712.726338944, 7810835.569725672, 7810865.625, 7810994.925886939, 7811303.125, 7811563.880370882, 7811675.0, 7811772.379458332, 7812039.0625, 7812062.723070118, 7812157.8125, 7812771.223734183, 7813486.597499306, 7813534.182378203, 7814058.796880152, 7814421.875, 7814423.380270764, 7814637.309056473, 7815556.446538158, 7815622.862805565, 7815951.5625, 7816281.25, 7816872.711968057, 7818456.1159473425, 7819957.302079109, 7820146.703532446, 7820778.068242296, 7824857.8883262025, 7825433.320319017, 7829396.538276137, 7830057.8125, 7831243.549125682, 7831251.639783068, 7831347.710498671, 7831726.994487621, 7831760.9375, 7831762.5, 7832025.0, 7832071.782776182, 7832259.375, 7832525.0, 7832836.994339249, 7832917.180896106, 7833151.4105946105, 7833164.892435321, 7833272.916895842, 7833303.890765397, 7833454.291439448, 7833521.958838762, 7833559.730876788, 7833579.6875, 7833587.5, 7833620.3125, 7833794.918816197, 7833821.501735169, 7833841.724631906, 7833845.3125, 7833856.25, 7833901.611141828, 7833965.104040638, 7833973.436401867, 7834051.5625, 7834053.857622725, 7834058.831311546, 7834075.123604547, 7834102.025297022, 7834157.899808793, 7834242.080815658, 7834308.019569352, 7834345.893826366, 7834353.125, 7834387.724005041, 7834431.25, 7834445.534738606, 7834492.1875, 7834576.5625, 7834581.727705707, 7834660.9375, 7834748.4375, 7834857.431477711, 7834861.4098998, 7834951.237860409, 7835007.80249327, 7835020.233043407, 7835026.5625, 7835066.275368199, 7835070.105024721, 7835353.455354296, 7835406.92879485, 7835425.3948633615, 7835515.142723035, 7835541.351347296, 7835573.4375, 7835726.268244285, 7835930.692356502, 7835950.0, 7837076.5625, 7837093.852998491, 7837250.6695696935, 7837525.563748436, 7837532.7760798605, 7839248.4375, 7839784.553777204, 7840007.141052872, 7840126.579197227, 7840173.134952083, 7840196.311207212, 7840384.820349966, 7840387.5, 7840394.022289609, 7840475.0, 7840492.092299873, 7840503.125, 7840510.0793594485, 7840562.5, 7840616.183159369, 7840629.301328253, 7840657.8125, 7840752.169755031, 7840773.932961335, 7841100.101327824, 7841107.8125, 7841228.340895479, 7841244.424817966, 7841250.038452261, 7841332.128314207, 7841357.660155708, 7841616.8738272, 7842084.3340150425, 7842154.6875, 7842182.8125, 7842193.989783592, 7842246.47727832, 7842525.0, 7842616.113170422, 7842695.171752353, 7842756.855846724, 7842935.9375, 7842972.010321207, 7842972.508940741, 7842978.544120249, 7843051.93280403, 7843077.624873927, 7843468.783282777, 7843735.356817279, 7843741.276157542, 7843744.661435732, 7843855.587200957, 7844073.4375, 7844241.530561842, 7845010.9375, 7845332.21708295, 7845784.033775057, 7846403.125, 7846446.875, 7846577.474601239, 7846599.233997263, 7846787.129665464, 7846841.81174591, 7847164.209794557, 7847495.425479724, 7847544.716432622, 7847637.623214217, 7847896.875, 7847961.205289137, 7848072.076012036, 7848310.9375, 7848360.093824675, 7848401.145847556, 7848432.3839718215, 7848459.951245878, 7848836.476102593, 7849217.1875, 7849412.314814529, 7849587.79706444, 7849695.3125, 7849739.0625, 7849783.109162087, 7849928.221186629, 7850108.881695181, 7850471.8456021845, 7850498.4375, 7850500.0, 7850523.829829929, 7850676.135616135, 7850722.3707293, 7850811.233329385, 7850890.107747137, 7851093.096825919, 7851264.03760212, 7851595.3125, 7851777.229150939, 7851880.867436118, 7851954.620716659, 7851972.1661467245, 7852157.410313185, 7852227.907836016, 7852490.797093868, 7852491.045173908, 7852633.337357627, 7852818.673237963, 7852976.527953996, 7853285.9375, 7853289.270781354, 7853371.875, 7853391.180171791, 7853465.524892035, 7853706.25, 7853934.944106664, 7853941.652150061, 7854032.8125, 7854536.805368423, 7854796.207192209, 7855280.824655275, 7855714.843735801, 7857360.598647806, 7857614.0625, 7857748.4375, 7858056.603205705, 7858751.959270311, 7865877.701061401, 7866114.829448058, 7871563.333209097, 7871707.245125485, 7871776.2293160185, 7871959.294586954, 7871964.829539078, 7871993.317450473, 7872760.9375, 7873644.826435672, 7873821.434667839, 7874186.76141515, 7874712.5, 7875195.3125, 7875665.651459348, 7875952.458163577, 7876257.379503968, 7876509.12078152, 7876663.649329522, 7876685.999218638, 7876696.875, 7876922.859109718, 7876923.448481856, 7877491.046212575, 7877574.150625756, 7877726.536206346, 7877811.337992409, 7877821.875, 7878364.9610391045, 7878389.665212932, 7878509.375, 7878569.415087575, 7878617.139341682, 7878850.666573863, 7878976.728490849, 7879141.577096891, 7879232.04627279, 7879262.5, 7879611.509450404, 7880127.787424331, 7880383.868466603, 7880405.126988242, 7880450.0, 7880451.5625, 7880870.8190111425, 7881087.002735077, 7881390.91066105, 7881461.934755296, 7881679.6875, 7881756.25, 7882120.721435659, 7882212.081079353, 7882494.759717756, 7882662.5, 7882728.147893607, 7883425.233656519, 7883661.631899123, 7883730.584484892, 7883795.637148202, 7883831.69505803, 7883970.825856988, 7884013.476866248, 7884159.375, 7884231.0952122165, 7884240.625, 7884279.6875, 7884289.262979542, 7884297.965891882, 7884332.667590401, 7884342.1875, 7884487.5, 7884555.600589109, 7884643.553351376, 7884684.958460622, 7884757.59576948, 7884896.89786132, 7884928.583273184, 7884931.922778477, 7885111.266740301, 7885135.453492796, 7885165.625, 7885175.0, 7885228.773623654, 7885240.625, 7885407.964057994, 7885461.648091389, 7885552.302103393, 7885562.5, 7885577.067620404, 7885881.25, 7885898.290552023, 7885952.960686723, 7885959.375, 7886014.210442432, 7886061.518203144, 7886090.951709086, 7886102.261021341, 7886148.3981743585, 7886155.846266686, 7886180.391128713, 7886201.955696116, 7886279.3934548395, 7886280.388787568, 7886289.976567853, 7886295.468962583, 7886315.335729997, 7886523.346783663, 7886600.432997405, 7886688.611900232, 7886742.1875, 7886794.688232278, 7886856.236375969, 7886856.70875107, 7887033.948266943, 7887471.121060137, 7887569.153582724, 7887640.240888212, 7887987.400182008, 7888008.662135219, 7888038.059493788, 7888209.826139047, 7888232.802059407, 7888517.651565595, 7888689.524111163, 7888762.5, 7889143.209390677, 7889472.5703635495, 7889581.158475628, 7890325.0, 7890840.625, 7891412.430137343, 7893466.1070123445, 7894151.409596016, 7894358.446316648, 7895243.816252514, 7895617.7113275, 7895646.3449931955, 7895823.367109159, 7896009.274150887, 7896014.0158916265, 7896019.880269554, 7896076.5625, 7896388.237971127, 7896814.4793832125, 7896823.2511021625, 7896833.985497274, 7896937.5, 7896995.867379899, 7897040.215582153, 7897326.703684349, 7897570.331659989, 7897717.1875, 7898456.8154344745, 7898497.118026163, 7898593.75, 7898643.5490688775, 7899179.636500813, 7899483.629025753, 7899606.820401977, 7899955.604918506, 7900192.753666287, 7900363.248080228, 7900507.8125, 7900546.830419838, 7901388.903554818, 7901436.943859275, 7901443.794129072, 7901708.840507646, 7904205.612741951, 7904271.428223872, 7904404.6875, 7905055.82760116, 7905146.771928718, 7905653.125, 7906015.288422447, 7906022.635763569, 7906220.224122585, 7906854.411113486, 7907212.02974418, 7907406.4200037215, 7907505.711567983, 7907758.9339558985, 7907920.2404889455, 7908130.821553954, 7908242.965600895, 7908515.625, 7908627.360206069, 7908900.0, 7908912.5, 7908913.3975199675, 7908932.109759906, 7908945.420312, 7909044.241366177, 7909229.6875, 7909305.465755842, 7909405.723872895, 7909424.813926074, 7909606.25, 7909635.9375, 7909843.75, 7909906.048775041, 7909914.558690434, 7910039.429098712, 7910083.886766582, 7910143.75, 7910265.385276244, 7910283.104864996, 7910354.6875, 7910443.75, 7910472.783649589, 7910569.998383689, 7911032.028336786, 7911135.9375, 7911212.5, 7911237.513696215, 7911343.75, 7911557.229696015, 7911713.515114998, 7911776.739822812, ...], [75.77937389746485, 8.367179937257717, 10.503209114925017, 9.989555650298486, 6.0995825202673375, 43.14871302795056, 72.58743574833545, 17.281379788990833, 45.30763093786949, 47.40295267998611, 73.41521427464102, 14.368674971670437, 125.10542131654205, 17.442605006343033, 20.91547369531325, 19.252343429260378, 45.24616875604569, 85.73801006426152, 102.83194273242984, 80.83169051820329, 19.55165468539642, 17.683104333543724, 101.39353206544018, 30.5444456634676, 16.80661915552132, 8.639008740070864, 16.95260496720971, 20.74085358999072, 14.954596534171472, 154.04795870627777, 8.611655593080533, 30.635221090223524, 12.87653706018717, 11.017463410956914, 67.1777011103161, 11.627846633595372, 37.53364788447346, 34.00151860080031, 51.439057240185505, 46.0097006533129, 9.76536698345817, 34.11888809389086, 45.87090004779914, 11.438996879002135, 31.760431304755613, 105.72986698077467, 76.11708934338458, 13.922440517482315, 28.938230811668223, 20.17047975631866, 19.405885776892458, 73.06431498429984, 56.56573231842627, 66.04570618031512, 8.587700276129187, 31.19607809380726, 34.91508008489954, 81.4099649268382, 18.692360337220215, 96.25188009694837, 17.80148373920896, 6.81276847885302, 22.869223868761082, 19.32948449362711, 117.75638247261357, 5.8637872108543325, 9.793731095351434, 50.84437196544248, 18.379686403624024, 154.59988054999812, 51.54557775545571, 20.4010098197819, 28.230365804741922, 6.8865261165603755, 31.260488517687655, 60.23405372638837, 11.824519696410054, 9.683084796332814, 36.47577471690258, 47.135632334801095, 40.68054900345767, 16.573976700927343, 11.585283597541594, 60.71534842101325, 5.752381865496687, 36.64356507051883, 33.04821886155186, 12.274168584322046, 63.657223219327484, 11.198468290381946, 71.7279815919741, 7.157819979268884, 6.8399444393366275, 10.065802442814055, 24.266402466799214, 88.26040077253056, 68.17123005750895, 29.26997429836135, 34.97968024233741, 6.39661695249413, 19.68903428671507, 23.18771378654962, 52.84743806179313, 53.10299059481843, 18.28526696372884, 24.48052222710715, 73.11357833617416, 34.424919133908666, 91.35685698701002, 123.08106529688916, 87.13415741346168, 24.654307029067766, 68.34654618778373, 76.45548927740698, 61.074795488850434, 69.76895161790979, 5.078271522576487, 101.96787403721133, 18.906300094340093, 46.22239394653938, 21.452899302766497, 13.033811284334204, 13.965394955358395, 38.58268823051506, 23.23434023962686, 10.356349724613953, 15.106053679131115, 9.07648147652173, 32.86309318522515, 45.69956690671596, 46.95406542482937, 21.943003321868666, 20.946342989732866, 17.07471812467685, 24.301127017365488, 88.2448134835179, 78.77806992324014, 42.8365324810175, 36.330731636348986, 9.309107643111968, 17.912893659127956, 13.374338532356033, 46.85423515686195, 32.930727543102655, 11.324152302913726, 10.03827386805636, 20.860759419355308, 95.15315196199994, 55.29660869066636, 17.63161779629596, 94.51161777530042, 6.728574440965789, 88.41694943151353, 99.11619110826489, 25.58456205216752, 22.421411440849123, 33.39069616101093, 22.055496102491695, 7.362451815473454, 16.29826387759978, 5.3826765739746065, 43.952852466973106, 7.933450298557918, 24.298709881372467, 67.18400612341755, 37.710533453227576, 19.509058159312037, 22.313528462425076, 38.09476413275149, 23.597945929627336, 36.904400508805224, 9.693162063305595, 23.383909148283017, 14.985518615011554, 28.652328250117783, 68.04054738315563, 17.959353106607185, 34.74074615171496, 57.50985619236694, 34.492897680410564, 36.809950187726365, 20.17282093672212, 62.72444865866305, 9.240073794217443, 10.513618105667272, 60.00387050477879, 66.22676547627076, 54.645259910706216, 34.625679791057834, 6.937226958606414, 86.6810854180434, 7.247103273303318, 48.35663614934071, 17.11973428120411, 14.01082363345673, 41.9452272446992, 29.409388925887104, 42.963326135001054, 6.510652093344713, 75.43528711020492, 12.647838032155285, 17.97063187047301, 50.443142618789295, 20.070986275858484, 6.712831379249432, 11.094801216558666, 19.664633167558485, 6.33901174630344, 64.92771727549732, 5.1453752750689095, 55.83604302869856, 16.85339867106172, 23.7489918514547, 69.76647806889375, 66.06626952408169, 32.967571818683574, 10.374614303059332, 75.07814701355488, 12.225002351435194, 69.7297550531591, 28.36647573539748, 49.03233252580391, 5.762334262988985, 5.824119327815224, 6.143487585331891, 146.44889819327108, 134.4874355624203, 10.108937864995056, 15.79959927410972, 120.3472322802111, 5.814304436855161, 62.63917336313298, 5.038704764385947, 45.985028789108455, 57.6382423597973, 112.78084643596598, 55.48551891186036, 23.418338041346793, 6.3062224720280735, 177.1666660848416, 117.77988195206021, 83.14112515949078, 5.7758419035592805, 6.10206608620311, 23.51772046778874, 81.06400630461202, 59.86805869417154, 31.07054204951327, 66.33738438774688, 33.645292442630065, 15.685979169874269, 14.922931557053763, 57.465164321033654, 17.615275463493095, 5.422157986490545, 25.67234393381081, 35.05681599083393, 9.35738673340413, 42.866711340005565, 82.35633401184577, 8.68176302875034, 12.83766148151451, 14.080244494258956, 88.26419955215543, 15.747893870336169, 19.451241637371798, 20.513320304542788, 21.42122109826489, 7.1158535576387685, 35.184803669056244, 35.042841549370245, 22.896945309174583, 48.345420918436645, 11.659660533601057, 18.729159243674225, 8.820313441980334, 5.667548703189063, 19.044051520374836, 22.834090602558376, 40.00376214756454, 60.05263433468341, 33.690043471293876, 45.25695293051384, 13.517313448527275, 59.64885306076931, 5.416318041713238, 13.161681689771925, 59.14412741214049, 10.183296440089888, 5.915835687682028, 7.284754526605191, 53.98620339342874, 14.282908158603096, 39.24421662545646, 82.27447985625521, 12.933305348015256, 7.471244346618097, 9.58785710504903, 107.80592791781848, 51.973731851095565, 26.60603485405259, 13.057465341524766, 83.5055084413024, 76.76640292860596, 29.950348941158843, 12.880381279525489, 51.03348769947334, 6.752842577256056, 15.613500410316842, 17.446031322948368, 105.1510997846725, 6.70598001871314, 24.36848903597608, 6.943295526006815, 124.93039785274189, 9.958133006181633, 10.975811972245326, 38.17414473582978, 104.25507528527086, 10.105145605970087, 17.82031532732893, 20.69793605720544, 48.7490350217041, 31.879408600632246, 22.684814917758473, 62.76060136374565, 44.37650071879589, 21.911945792776187, 7.226471815938998, 9.752509685001176, 60.10227736153959, 18.154873551960534, 8.225091028351152, 52.618021102276884, 90.48965006758985, 72.7643507364083, 45.70408038862092, 20.060827173480302, 22.322878635373733, 72.61359086650145, 20.982199140717558, 123.420716170709, 13.78154296255747, 19.81391399217208, 54.45008562716415, 46.164265267071066, 35.13935281136783, 6.996806021269423, 127.2095998391403, 63.13546477406838, 77.38489606922633, 90.43334354362584, 23.84141199765034, 6.935226167039879, 15.549029264273582, 5.434801151217527, 46.442484173285564, 159.54601011805377, 19.84257032637231, 65.35703407493047, 50.70324853763318, 10.520490325810902, 5.909918068665932, 5.281069574418615, 35.711422905641356, 37.55445892516226, 22.61805894576211, 79.55499765146837, 11.069991922200623, 8.325545527581006, 109.38984048442693, 48.01666869058602, 88.83384151039645, 8.090652548037129, 52.18302188128803, 28.24312455227844, 30.255598333004965, 33.3258459676234, 73.17108919742444, 7.78474320150352, 14.89805927563407, 73.08485023024363, 111.11030808707271, 21.757369883424882, 18.79509846836806, 9.496215492274008, 55.5922892764183, 12.009153332763232, 38.8148294832861, 16.91272336660956, 89.91671658653931, 11.179766826080558, 16.864303503401832, 59.303737948752726, 25.073564447779194, 16.232582119562505, 25.12413508844568, 166.0654524560879, 37.70339402455172, 15.934270268577777, 56.483615865427645, 31.52536601870993, 48.51380594305171, 44.52146149182937, 23.60704859103825, 40.6178422086074, 90.16490700223767, 12.53215500759742, 14.362567958951075, 15.619933157643509, 169.7433376933799, 60.1644157332851, 97.7065586835532, 23.677167950409363, 6.206591847102658, 43.6964187128362, 7.893478865511607, 9.906057811341132, 5.475080872883204, 37.10915225724797, 26.05498474283391, 76.37904310608388, 99.83514125552134, 15.214633230643365, 7.108337224286823, 81.08198246738667, 11.287411955779925, 65.85452701122087, 13.693270163810617, 9.843851948395645, 93.764006151584, 18.61021186295971, 20.423668832546774, 15.457464700363506, 89.26617840323664, 22.58102379103228, 5.929223817367708, 42.679640531171685, 13.043873412000382, 17.923000310621358, 10.306955657621158, 6.133676949097629, 75.95577932103919, 19.960651467456664, 22.458591568968238, 57.19862923460107, 6.335848137835302, 10.50025026993599, 6.476634666862084, 74.62467429727346, 10.109580788676647, 13.90089927964734, 12.763017989725693, 18.604483326122807, 44.76672691976929, 68.98452442633321, 38.046941978230585, 57.40025924173921, 7.719701791477671, 126.72075139167391, 27.53802652233286, 19.52344901257016, 12.475331234280022, 92.59571620654681, 64.40737608131752, 32.40073915651278, 35.02777007910585, 64.6578237436517, 16.93689502999482, 14.01434518693305, 40.0877209478256, 77.94900364890809, 8.683723943750923, 17.535776901945425, 8.522748410225779, 34.38512680800052, 53.258290447154515, 46.14220257830637, 28.920176403430798, 11.159168306861021, 6.8616437821970955, 14.291818754850429, 53.79660007924667, 15.864266942213769, 12.265100122004123, 14.23115237066384, 5.229895940246163, 36.230488560260056, 69.90890273766556, 11.220501572211255, 68.48688167261253, 62.90889731659663, 8.248744808802472, 112.7899207049727, 28.493794623212327, 14.477614269303894, 9.865454358398159, 80.72844296641942, 16.313161927782637, 155.72694985774538, 12.775923936277666, 93.93659734282265, 37.774857000383896, 95.84150510774452, 96.93127432035436, 41.56590795437736, 29.895759222298793, 67.03999199049302, 8.519194236266825, 86.14203056297272, 23.57741987229555, 24.82519470244781, 63.369110488716565, 83.2043698292779, 8.88782718745094, 13.122817517740973, 60.50488014642002, 17.481406367966258, 14.268624259161628, 27.032306639676182, 8.915011494855111, 36.89478561695919, 108.37507033553543, 42.79258607337552, 24.00444846724154, 11.909311686646644, 20.458438070988493, 16.851568440663172, 71.80792244885939, 6.4226936794104486, 78.19943720544401, 9.614854386799921, 118.86443121264003, 70.42524800422608, 10.403176909419091, 48.73771438253408, 6.251369965131291, 81.03038975425292, 92.90982759191047, 67.98714606037349, 15.15361062815472, 15.100603319083458, 26.938934715427525, 46.337690784526096, 12.422988296154312, 75.05232274342225, 35.10099202467861, 36.62492126099874, 9.549995221972857, 6.633586183880601, 7.433337805605962, 27.84139114781179, 87.79046509266604, 14.864606651815505, 31.211611872071394, 34.56455378170253, 28.548722944307443, 18.29799464928961, 17.46796332657174, 58.085819168357986, 11.77691026501157, 6.809550602885071, 27.030093132376926, 63.48276520560529, 30.606783047471488, 50.24720272889708, 75.96298091209687, 69.3487016435456, 9.797776965847337, 49.64098760244924, 8.408171654504237, 63.11439516961962, 20.106129064865016, 51.348272520865336, 15.22261429915703, 35.11025486977705, 52.205997335484895, 44.14153611438002, 56.33081431231807, 24.033821052873513, 6.653952061783126, 70.18401549175954, 50.34158739081083, 19.5041186936022, 78.91100155410064, 54.26606254244907, 9.19050732252967, 27.449828629180352, 5.618252845866535, 41.55802034194101, 210.4682709123854, 49.76721558804468, 14.22742409310264, 21.91323605486492, 19.49267102168269, 22.01030983310732, 93.02286868243118, 49.899584113922934, 141.62857149392872, 37.253879405811176, 48.4401434313253, 64.70314534332307, 6.2053579476273555, 5.041432658936154, 25.84666887944973, 19.449484258125533, 21.28999595835898, 13.5504047817461, 27.913217757766194, 15.270991479133716, 6.125906002299535, 63.657993707299774, 56.08244783866045, 140.9832946137617, 22.62354034890323, 22.857922700805716, 51.60597022650662, 35.423297451887514, 56.59010979617043, 9.372874059746922, 21.286536711450736, 34.310717709479604, 51.76073324766837, 45.76447631073582, 21.068080969700528, 5.539109684111969, 9.755986996496365, 23.841160456350345, 167.03285460666675, 15.79422102851615, 84.38012843751478, 28.785605316509347, 7.686316865513143, 62.26984474000328, 29.016839953642005, 81.20469784299127, 38.18305075614624, 17.139707607514065, 80.78636459778981, 51.199771741967346, 22.76817323871124, 11.95617364084799, 13.833423430825091, 8.281292678943387, 49.71017292539764, 74.59465302001314, 18.176594194617223, 37.803358122820384, 7.727257136195683, 18.363622967456642, 77.36975079664745, 64.05005228707356, 21.2759399741984, 50.12524862451983, 21.572418552369665, 5.672164002351123, 63.22637876178969, 39.32220674385834, 11.292609196520711, 5.365401122497758, 30.783894729895223, 23.333334649668437, 36.2467647106219, 15.669713964698907, 31.847276198152866, 54.78654344229245, 100.15894504507627, 13.154663414123261, 11.903317487631742, 42.277835307653234, 5.629287575100844, 59.77834948832195, 103.71616905331389, 55.20657842603028, 53.05532872602242, 99.10366572572732, 58.933424102564686, 140.78494267449938, 55.336970668112905, 101.32856640331687, 17.239112599334952, 7.148344862417927, 42.57973272845594, 36.66194370977249, 110.54856574637517, 21.93316353593562, 8.812933967158223, 69.25965484101668, 23.57764773696671, 14.809188300859176, 60.306820390184214, 65.2019204975692, 6.81234067096287, 58.25542066915908, 50.72478897658387, 17.198108186453442, 26.02306266524444, 17.893489516270314, 39.86543270134933, 15.483657906416056, 12.287870967717247, 11.85275947167925, 5.302664395706288, 21.4918426855442, 15.06990362993347, 78.16291106953707, 53.756605484317845, 6.960214806152007, 30.004322854164364, 66.73891785027284, 10.23573480770621, 58.506149779092084, 20.59129541903635, 55.65289418652223, 53.04869189922501, 35.095887727077695, 7.970183822488257, 19.195011608132816, 9.036737085531472, 38.421547357771445, 21.81789783955739, 72.03870296904579, 13.070421615724793, 24.43248869347152, 94.66423555195938, 48.512601635513164, 6.519070154139678, 39.7220067481685, 12.474010939879152, 37.329732002308425, 109.79057048239008, 6.150146280485079, 5.6445524199632935, 95.53571326293908, 73.13347941536583, 16.209117805437835, 78.91883180674998, 51.686433300796054, 32.88272626850591, 8.33810593474777, 33.827855435506585, 7.592639488999502, 106.80851516835213, 38.014175961594525, 20.08104059652176, 57.219326510496046, 17.240624622318663, 6.119412796569261, 16.292887100923153, 12.92524202964625, 31.81716924454163, 70.95771426346387, 20.5875050349473, 41.48534873433179, 14.692929090261519, 69.60782670068659, 108.50554691578682, 10.804423733281489, 17.05191263453782, 9.71388897342303, 17.407125322829412, 27.0932389877613, 6.481689443856208, 95.27759819239654, 14.385595210839332, 70.78779213016787, 17.348321916806636, 5.03986095044189, 51.74815714237859, 65.66007401248675, 10.382713957447052, 40.831200590955035, 143.23421368055125, 28.316137981113698, 15.233250831639616, 55.91890331107992, 184.38188554979897, 38.495429048704324, 70.40339905639908, 180.80856579634292, 39.59749122973318, 13.539302006503188, 6.926931451497743, 69.79388900618696, 20.84633968886833, 18.069784975195386, 60.70813952811352, 6.926952152596068, 8.070358253029854, 52.77980986846649, 8.045242051506238, 38.44252871199682, 7.356296707665336, 72.09725941787816, 46.47896201520056, 6.491246979640077, 10.224083435842811, 6.044199870067282, 24.353699338477004, 22.40532544261357, 5.3440410115856505, 35.60457229941485, 19.118165577622307, 14.902212489164697, 9.714907068985289, 20.20181349296059, 8.272721573847463, 9.69466987103742, 59.945806132145364, 19.999857777676997, 87.89485051492451, 38.28640357179888, 36.45895517751243, 127.10825807830109, 147.3428649567493, 23.96834087411002, 78.04122872618841, 74.14709460261932, 78.44250170089538, 63.972200698481856, 13.794046430432008, 164.09168701018413, 5.357210308997023, 80.7545993011994, 39.42706496235086, 33.908551214336256, 24.31544735771677, 101.01130535756585, 5.67170451546288, 57.13858160369107, 38.10447757733338, 12.326619646094212, 9.000638252250978, 95.9195757907156, 35.03679734156756, 42.53134986270152, 15.913744204762171, 63.69488076298886, 6.1866241733042235, 32.22754674694073, 45.737121706747224, 12.037625668919935, 68.39296283817029, 35.52255238958656, 14.651844872668256, 28.920086719301967, 62.03470462180543, 15.764977064637893, 21.781078362324237, 45.7583020118038, 47.79234955090532, 35.078102850952234, 50.57029483637628, 123.98302728497492, 101.58334694590967, 39.71484542033533, 25.23605808442791, 32.262191037373086, 67.1525138676788, 5.728037104469618, 13.370060992090933, 43.54751532213955, 72.44372075067331, 26.766943993505045, 47.42425617542001, 20.75929987885747, 7.882192250189279, 6.168543502619574, 54.41963591640561, 7.260879807876567, 50.0573315914881, 13.524240065801965, 14.350147033262195, 29.315860766754522, 15.537062968370547, 73.69959697930145, 116.20355195940836, 6.911461941382634, 98.28954104329003, 22.51035020899453, 12.44005032631512, 16.686831634142177, 10.697228467404678, 12.434843412035935, 10.245784245932342, 5.101548182073504, 6.2313301172358235, 6.255804646392783, 16.896062724601656, 5.9011022217482205, 29.280285434051088, 10.274521036388457, 6.086683582414464, 17.0379690463985, 22.256497823944862, 5.760224648051941, 17.89456260300704, 10.576082102251867, 7.567529830997005, 7.942443831757425, 9.853980567648486, 63.737747093064144, 7.599465858885653, 17.064377518017704, 11.935004054977215, 36.79135119703659, 10.376204886896502, 6.601915163070351, 72.15113650616763, 35.47531287844134, 55.72200970479812, 68.14225223311303, 53.71068492399354, 25.8310217866934, 23.407129002654802, 5.945196034992161, 17.40116374597166, 21.19889928871132, 14.679832610422947, 48.36888054554997, 27.63505420651791, 141.18377756493646, 161.77919700166413, 95.83576931721865, 11.848478812159211, 8.190406803213548, 13.639214485485349, 153.46692434726222, 7.817064122439665, 37.95946559608403, 15.508403542999886, 11.157787748560725, 160.87695928916384, 17.646359724967656, 132.26025561631852, 37.78525971063898, 6.242141614323182, 6.082811758511615, 12.699344127729027, 106.18394756728361, 37.019817138118945, 17.650754794943285, 108.48929290844448, 46.84103382897593, 9.293990467471895, 37.67113447543241, 29.40268371261204, 6.772348690424883, 46.75116462400055, 27.006323348318695, 8.063648119326782, 44.54004932020653, 22.3037916689983, 190.55216648303045, 58.77459749221617, 91.646159437676, 7.33690375892189, 26.891191968775296, 113.4641398549463, 13.408253284665072, 7.6659046186120055, 36.39458470955382, 13.490465553501322, 14.673961443351086, 5.278033810458571, 87.45947492036616, 65.53398352940366, 6.619858009052273, 109.4911495253516, 62.668299032523265, 12.895828309594785, 55.31508540543686, 5.248172781601375, 38.24725034502584, 54.251840748936495, 64.79470544474437, 48.56090763506081, 36.80824459530817, 165.4594052501177, 61.088246523315355, 40.64845255101111, 25.100152446763282, 47.266976095240395, 16.55085494133559, 5.587593080994215, 56.41421361989049, 21.82626128652824, 76.66999354153097, 40.918916955366605, 66.35741152380592, 8.83363099590283, 23.57208466159911, 65.33119158145465, 58.22148828621731, 112.86766160794522, 14.993971221577263, 46.348384084229764, 27.706948377006242, 76.58705226931363, 9.485979564942808, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4508448.234817009, 4525662.649372791, 4529085.497506048, 4554180.375247385, 4557239.172206553, 4557490.766506883, 4563515.625, 4564120.815428437, 4566868.75, 4566873.4375, 4567509.375, 4629556.091128763, 4635393.75, 4635442.718468935, 4636655.690078248, 4637253.266905102, 4639490.625, 4639690.800652196, 4639891.434201347, 4640304.382394389, 4640694.039647637, 4641442.915055784, 4641668.75, 4641829.124908159, 4642141.041146311, 4657784.986863242, 4658283.256026653, 4659686.921132857, 4660429.643754438, 4706595.689188161, 4727358.380485758, 4727634.151556195, 4727644.639732772, 4728170.240805893, 4728473.4375, 4730201.860526125, 4730386.237443996, 4730973.111430643, 4731445.253987797, 4733012.5, 4735641.097203955, 4736866.081604873, 4738436.804585085, 4757968.94042531, 4758357.389577094, 4759188.707705552, 4809698.4375, 4810180.954212493, 4810193.75, 4810505.606338627, 4811518.011786587, 4812150.0, 4812731.170079997, 4812917.1875, 4813619.279095001, 4822650.0, 4823809.375, 4827253.125, 4827508.539464814, 4828785.9375, 4828791.215974677, 4829343.991842413, 4829460.7666340545, 4829520.982448296, 4829593.75, 4829985.026194197, 4830103.625452815, 4830155.784209378, 4830160.056201036, 4830208.493235723, 4830254.6875, 4830347.820580751, 4830474.408642336, 4830577.148974393, 4830600.0, 4830938.839160139, 4830962.904315161, 4830967.576060255, 4831059.375, 4831135.522232717, 4831171.564179624, 4831387.896061164, 4831390.899264409, 4832043.75, 4832147.56877751, 4832513.708733989, 4832750.0, 4833017.8150348365, 4833296.875, 4833581.29480417, 4833582.8125, 4835132.949067855, 4836078.496184472, 4837207.007209927, 4837434.11432472, 4837610.001879005, 4839087.5, 4839610.643490283, 4899572.916651352, 4915965.022498312, 4937868.5301100295, 5002345.26389926, 5002631.25, 5003039.0625, 5003855.354478243, 5004025.934655898, 5004795.3125, 5008346.707705403, 5027192.1253893925, 5036865.408779173, 5037942.133904375, 5040975.482914464, 5050543.201004543, 5066839.477177888, 5068998.4375, 5069145.3125, 5072208.321545082, 5073790.144275449, 5073822.632145832, 5075293.75, 5076427.620960582, 5076432.202211632, 5078101.280444007, 5080148.4375, 5080627.7834681, 5082701.005777276, 5083206.236621591, 5090680.932302299, 5091557.940907081, 5093228.118915548, 5093609.375, 5093831.043693493, 5093865.414932849, 5094936.391772517, 5095440.36689984, 5095767.1875, 5096461.994012191, 5096695.804993022, 5096709.375, 5097812.4735138975, 5106544.358957519, 5108840.7289437875, 5115800.454906914, 5117675.0, 5134134.497146527, 5134638.232345059, 5136991.6216851035, 5150476.5625, 5157492.1875, 5167609.722484697, 5176696.875, 5179570.134971309, 5208495.254950619, 5210337.231430711, 5212646.70617296, 5214168.338282063, 5214907.8125, 5215826.815157288, 5215830.531289544, 5215892.503086282, 5216077.705529078, 5216762.317879874, 5216794.579176406, 5217454.4292208785, 5217525.278520024, 5217637.5, 5217670.571705656, 5217715.006852177, 5217721.875, 5217723.125443287, 5217736.2477377355, 5218711.33644235, 5218796.595446944, 5218807.821818062, 5218968.403600125, 5219209.375, 5219480.303869705, 5219795.122367944, 5220294.846804229, 5220883.835041181, 5220982.355077155, 5221066.544114124, 6909701.385214708, 6922331.139977356, 7009629.2555688275, 7021548.211286401, 7025436.836235622, 7087324.697047077, 7088644.21881663, 7091171.124537322, 7113789.0625, 7114505.14486529, 7115073.4375, 7115320.786604773, 7115768.4823338045, 7116232.8125, 7128525.0, 7171360.469317619, 7171362.64867146, 7172003.125, 7172178.919660546, 7173395.93066151, 7195637.5, 7208196.219555032, 7219529.428257359, 7219631.228845529, 7220377.419840031, 7220967.7355185505, 7220968.311535183, 7221036.620624946, 7221881.9922800725, 7222366.049989572, 7222660.637363002, 7231150.0, 7237014.0625, 7271567.1875, 7285263.520603747, 7286826.5625, 7286830.291866298, 7288580.6979808025, 7289821.866940656, 7290350.0, 7364846.151719801, 7459065.76109632, 7459102.07880043, 7466254.094410639, 7473497.199874913, 7504263.295694558, 7514576.770777621, 7516264.0625, 7518545.316880233, 7518568.174179004, 7518640.455841059, 7518670.3125, 7519044.676689548, 7522801.3240174195, 7524085.9375, 7525955.9235240165, 7526140.927755781, 7527300.238245319, 7528926.055692818, 7529086.680337178, 7541297.9084005365, 7541392.320745791, 7541667.087893256, 7543080.152632172, 7543392.751017562, 7545555.846194012, 7547428.125, 7548225.623209691, 7548504.217039962, 7548639.057617326, 7548728.125, 7548905.247744877, 7548908.418513959, 7549252.961886474, 7549634.375, 7549773.468070514, 7549784.375, 7549788.408631933, 7549803.804339373, 7549825.873932701, 7549941.388780369, 7549976.5625, 7550139.2591144005, 7550388.848748065, 7550457.528051019, 7550604.180264141, 7550649.978660997, 7550820.3125, 7550821.26431551, 7550860.567584673, 7550934.072633288, 7550942.503106525, 7551046.941260259, 7551064.951662337, 7551160.303268113, 7551394.526114089, 7551431.813429999, 7551489.0625, 7551599.377249415, 7551866.5791930305, 7551906.045098011, 7552385.50588219, 7552688.564749878, 7553548.896553235, 7553569.751368239, 7553782.8125, 7553899.298202781, 7554227.850311088, 7554347.461823109, 7554895.797555343, 7555063.878266973, 7556299.60477702, 7582086.558620691, 7582189.97504823, 7582198.057192005, 7582906.538484705, 7583250.358346647, 7583485.9375, 7584474.894870691, 7584946.273913511, 7584982.7670260165, 7585028.113264343, 7585048.492543568, 7585343.078787352, 7585380.356002918, 7585626.508848769, 7585767.353298911, 7585767.71905736, 7586055.04372301, 7586351.267356466, 7586750.150044744, 7586907.088447834, 7586948.4375, 7587505.346072383, 7587513.963099206, 7587907.617377309, 7588150.4860156365, 7588205.479834249, 7588222.469035182, 7588225.978914615, 7588670.157478231, 7589439.0625, 7590833.874416019, 7591694.773989169, 7591884.375, 7592124.54098668, 7599497.259996758, 7612425.459301443, 7613551.5625, 7614832.279909287, 7615365.506890102, 7615415.625, 7616114.81428975, 7616309.375, 7616739.3572521405, 7616952.46834344, 7616999.0842516795, 7617051.242826378, 7617055.697212656, 7617319.180686894, 7618957.470794146, 7619698.342705427, 7622287.5, 7642596.9661412975, 7644753.125, 7645479.191111247, 7645614.0625, 7645826.645125745, 7645828.125, 7645923.349508834, 7646146.582065255, 7646207.053302804, 7646222.935106511, 7646483.731322277, 7646492.1875, 7646534.375, 7646577.4419303145, 7646584.375, 7646587.5, 7646635.510877158, 7646640.280053261, 7646663.734751764, 7646683.727945409, 7646713.204696304, 7646985.543332402, 7647003.125, 7647070.275259328, 7647142.260469595, 7647169.887039514, 7647343.733124653, 7647412.5, 7647505.860168265, 7647509.111844859, 7647549.98560488, 7647557.8125, 7647674.311194519, 7647776.442920018, 7647787.975421734, 7647912.488553448, 7647920.412910131, 7648074.775286, 7648119.838589911, 7648219.491569809, 7648256.4386899285, 7648277.557780137, 7648586.436638868, 7648837.5, 7650461.373609774, 7652755.8076331755, 7653065.658053013, 7653712.927041544, 7661493.75, 7670365.421952983, 7682797.176966528, 7686265.425414557, 7713318.883234933, 7741153.125, 7745961.175667276, 7746072.98589945, 7746121.875, 7746148.4375, 7746168.75, 7746179.37616691, 7746653.017628313, 7746924.9448639555, 7746983.557049345, 7747049.839337228, 7747228.292290622, 7747312.070331361, 7747504.6875, 7747550.0, 7747800.796006523, 7749465.129755639, 7752239.0625, 7771655.424496286, 7776397.48449725, 7776494.056577655, 7777846.875, 7778987.913991641, 7779451.395891611, 7779715.625, 7780295.382358111, 7780724.9498744635, 7781865.625, 7782176.662326864, 7782315.345299006, 7782344.941321555, 7782367.737158658, 7782429.6875, 7782736.652635529, 7783007.198167889, 7783104.816586657, 7783137.5, 7783169.915056015, 7783454.569837132, 7783670.3125, 7783847.199276812, 7783905.2980742585, 7784030.652726731, 7784878.552170052, 7785271.822125432, 7785363.393811943, 7785527.716629502, 7785714.391059855, 7786380.212205475, 7786393.307709163, 7786442.120469285, 7786518.326233074, 7786844.546263813, 7786995.009779836, 7788158.655686912, 7788658.526805546, 7790310.119330851, 7790398.4375, 7790798.071008458, 7791798.09642966, 7792254.998421676, 7792514.0625, 7792598.385595259, 7792970.06793795, 7793785.094412891, 7795034.375, 7795400.0, 7795453.125, 7795482.038596034, 7795496.851048027, 7795581.690610642, 7795709.658422889, 7795773.4375, 7795925.0, 7795992.8699023165, 7796005.234361194, 7796006.671408124, 7796050.0, 7796079.6875, 7796099.908008784, 7796170.3125, 7796184.395035278, 7796187.972462089, 7796246.467624151, 7796534.332727974, 7796537.722717492, 7796624.060783128, 7796676.362749751, 7796840.0708468845, 7797025.0, 7797096.875, 7797354.746066969, 7797366.923910389, 7797375.0, 7797381.177766358, 7797412.785333064, 7797463.66158449, 7797521.74772431, 7797750.570591582, 7797757.5614213245, 7798159.872563479, 7798382.9678126, 7798574.553467551, 7798790.625, 7798871.875, 7799006.25, 7799103.423122362, 7799201.290805957, 7799217.604596946, 7799625.0, 7799655.102918976, 7799825.0, 7800045.1342126345, 7800099.779703961, 7800215.625, 7800423.4375, 7800774.424277201, 7800802.549079216, 7800888.310528772, 7800904.547726658, 7801006.061500587, 7801142.107256833, 7801146.337768759, 7801153.125, 7801323.4375, 7801377.123506976, 7801424.719605581, 7801564.510936559, 7801673.513173644, 7801717.612144826, 7801729.6875, 7801858.951513021, 7801878.125, 7801931.567223103, 7801965.177151349, 7802057.117568305, 7802193.231110792, 7802202.96272116, 7802551.436183068, 7802780.893443342, 7802883.494200546, 7802996.384174364, 7803010.749923582, 7803621.754654638, 7803812.414385981, 7803843.057250793, 7803906.945945995, 7804146.152087225, 7804887.64703242, 7804940.936136798, 7805720.56017963, 7806761.812429378, 7807121.379481381, 7807749.964509398, 7807954.6875, 7808206.22967628, 7808710.9375, 7808807.8125, 7809300.0, 7809613.168906685, 7810022.1422365615, 7810044.222867978, 7810426.941600822, 7810712.726338944, 7810835.569725672, 7810865.625, 7810994.925886939, 7811303.125, 7811563.880370882, 7811675.0, 7811772.379458332, 7812039.0625, 7812062.723070118, 7812157.8125, 7812771.223734183, 7813486.597499306, 7813534.182378203, 7814058.796880152, 7814421.875, 7814423.380270764, 7814637.309056473, 7815556.446538158, 7815622.862805565, 7815951.5625, 7816281.25, 7816872.711968057, 7818456.1159473425, 7819957.302079109, 7820146.703532446, 7820778.068242296, 7824857.8883262025, 7825433.320319017, 7829396.538276137, 7830057.8125, 7831243.549125682, 7831251.639783068, 7831347.710498671, 7831726.994487621, 7831760.9375, 7831762.5, 7832025.0, 7832071.782776182, 7832259.375, 7832525.0, 7832836.994339249, 7832917.180896106, 7833151.4105946105, 7833164.892435321, 7833272.916895842, 7833303.890765397, 7833454.291439448, 7833521.958838762, 7833559.730876788, 7833579.6875, 7833587.5, 7833620.3125, 7833794.918816197, 7833821.501735169, 7833841.724631906, 7833845.3125, 7833856.25, 7833901.611141828, 7833965.104040638, 7833973.436401867, 7834051.5625, 7834053.857622725, 7834058.831311546, 7834075.123604547, 7834102.025297022, 7834157.899808793, 7834242.080815658, 7834308.019569352, 7834345.893826366, 7834353.125, 7834387.724005041, 7834431.25, 7834445.534738606, 7834492.1875, 7834576.5625, 7834581.727705707, 7834660.9375, 7834748.4375, 7834857.431477711, 7834861.4098998, 7834951.237860409, 7835007.80249327, 7835020.233043407, 7835026.5625, 7835066.275368199, 7835070.105024721, 7835353.455354296, 7835406.92879485, 7835425.3948633615, 7835515.142723035, 7835541.351347296, 7835573.4375, 7835726.268244285, 7835930.692356502, 7835950.0, 7837076.5625, 7837093.852998491, 7837250.6695696935, 7837525.563748436, 7837532.7760798605, 7839248.4375, 7839784.553777204, 7840007.141052872, 7840126.579197227, 7840173.134952083, 7840196.311207212, 7840384.820349966, 7840387.5, 7840394.022289609, 7840475.0, 7840492.092299873, 7840503.125, 7840510.0793594485, 7840562.5, 7840616.183159369, 7840629.301328253, 7840657.8125, 7840752.169755031, 7840773.932961335, 7841100.101327824, 7841107.8125, 7841228.340895479, 7841244.424817966, 7841250.038452261, 7841332.128314207, 7841357.660155708, 7841616.8738272, 7842084.3340150425, 7842154.6875, 7842182.8125, 7842193.989783592, 7842246.47727832, 7842525.0, 7842616.113170422, 7842695.171752353, 7842756.855846724, 7842935.9375, 7842972.010321207, 7842972.508940741, 7842978.544120249, 7843051.93280403, 7843077.624873927, 7843468.783282777, 7843735.356817279, 7843741.276157542, 7843744.661435732, 7843855.587200957, 7844073.4375, 7844241.530561842, 7845010.9375, 7845332.21708295, 7845784.033775057, 7846403.125, 7846446.875, 7846577.474601239, 7846599.233997263, 7846787.129665464, 7846841.81174591, 7847164.209794557, 7847495.425479724, 7847544.716432622, 7847637.623214217, 7847896.875, 7847961.205289137, 7848072.076012036, 7848310.9375, 7848360.093824675, 7848401.145847556, 7848432.3839718215, 7848459.951245878, 7848836.476102593, 7849217.1875, 7849412.314814529, 7849587.79706444, 7849695.3125, 7849739.0625, 7849783.109162087, 7849928.221186629, 7850108.881695181, 7850471.8456021845, 7850498.4375, 7850500.0, 7850523.829829929, 7850676.135616135, 7850722.3707293, 7850811.233329385, 7850890.107747137, 7851093.096825919, 7851264.03760212, 7851595.3125, 7851777.229150939, 7851880.867436118, 7851954.620716659, 7851972.1661467245, 7852157.410313185, 7852227.907836016, 7852490.797093868, 7852491.045173908, 7852633.337357627, 7852818.673237963, 7852976.527953996, 7853285.9375, 7853289.270781354, 7853371.875, 7853391.180171791, 7853465.524892035, 7853706.25, 7853934.944106664, 7853941.652150061, 7854032.8125, 7854536.805368423, 7854796.207192209, 7855280.824655275, 7855714.843735801, 7857360.598647806, 7857614.0625, 7857748.4375, 7858056.603205705, 7858751.959270311, 7865877.701061401, 7866114.829448058, 7871563.333209097, 7871707.245125485, 7871776.2293160185, 7871959.294586954, 7871964.829539078, 7871993.317450473, 7872760.9375, 7873644.826435672, 7873821.434667839, 7874186.76141515, 7874712.5, 7875195.3125, 7875665.651459348, 7875952.458163577, 7876257.379503968, 7876509.12078152, 7876663.649329522, 7876685.999218638, 7876696.875, 7876922.859109718, 7876923.448481856, 7877491.046212575, 7877574.150625756, 7877726.536206346, 7877811.337992409, 7877821.875, 7878364.9610391045, 7878389.665212932, 7878509.375, 7878569.415087575, 7878617.139341682, 7878850.666573863, 7878976.728490849, 7879141.577096891, 7879232.04627279, 7879262.5, 7879611.509450404, 7880127.787424331, 7880383.868466603, 7880405.126988242, 7880450.0, 7880451.5625, 7880870.8190111425, 7881087.002735077, 7881390.91066105, 7881461.934755296, 7881679.6875, 7881756.25, 7882120.721435659, 7882212.081079353, 7882494.759717756, 7882662.5, 7882728.147893607, 7883425.233656519, 7883661.631899123, 7883730.584484892, 7883795.637148202, 7883831.69505803, 7883970.825856988, 7884013.476866248, 7884159.375, 7884231.0952122165, 7884240.625, 7884279.6875, 7884289.262979542, 7884297.965891882, 7884332.667590401, 7884342.1875, 7884487.5, 7884555.600589109, 7884643.553351376, 7884684.958460622, 7884757.59576948, 7884896.89786132, 7884928.583273184, 7884931.922778477, 7885111.266740301, 7885135.453492796, 7885165.625, 7885175.0, 7885228.773623654, 7885240.625, 7885407.964057994, 7885461.648091389, 7885552.302103393, 7885562.5, 7885577.067620404, 7885881.25, 7885898.290552023, 7885952.960686723, 7885959.375, 7886014.210442432, 7886061.518203144, 7886090.951709086, 7886102.261021341, 7886148.3981743585, 7886155.846266686, 7886180.391128713, 7886201.955696116, 7886279.3934548395, 7886280.388787568, 7886289.976567853, 7886295.468962583, 7886315.335729997, 7886523.346783663, 7886600.432997405, 7886688.611900232, 7886742.1875, 7886794.688232278, 7886856.236375969, 7886856.70875107, 7887033.948266943, 7887471.121060137, 7887569.153582724, 7887640.240888212, 7887987.400182008, 7888008.662135219, 7888038.059493788, 7888209.826139047, 7888232.802059407, 7888517.651565595, 7888689.524111163, 7888762.5, 7889143.209390677, 7889472.5703635495, 7889581.158475628, 7890325.0, 7890840.625, 7891412.430137343, 7893466.1070123445, 7894151.409596016, 7894358.446316648, 7895243.816252514, 7895617.7113275, 7895646.3449931955, 7895823.367109159, 7896009.274150887, 7896014.0158916265, 7896019.880269554, 7896076.5625, 7896388.237971127, 7896814.4793832125, 7896823.2511021625, 7896833.985497274, 7896937.5, 7896995.867379899, 7897040.215582153, 7897326.703684349, 7897570.331659989, 7897717.1875, 7898456.8154344745, 7898497.118026163, 7898593.75, 7898643.5490688775, 7899179.636500813, 7899483.629025753, 7899606.820401977, 7899955.604918506, 7900192.753666287, 7900363.248080228, 7900507.8125, 7900546.830419838, 7901388.903554818, 7901436.943859275, 7901443.794129072, 7901708.840507646, 7904205.612741951, 7904271.428223872, 7904404.6875, 7905055.82760116, 7905146.771928718, 7905653.125, 7906015.288422447, 7906022.635763569, 7906220.224122585, 7906854.411113486, 7907212.02974418, 7907406.4200037215, 7907505.711567983, 7907758.9339558985, 7907920.2404889455, 7908130.821553954, 7908242.965600895, 7908515.625, 7908627.360206069, 7908900.0, 7908912.5, 7908913.3975199675, 7908932.109759906, 7908945.420312, 7909044.241366177, 7909229.6875, 7909305.465755842, 7909405.723872895, 7909424.813926074, 7909606.25, 7909635.9375, 7909843.75, 7909906.048775041, 7909914.558690434, 7910039.429098712, 7910083.886766582, 7910143.75, 7910265.385276244, 7910283.104864996, 7910354.6875, 7910443.75, 7910472.783649589, 7910569.998383689, 7911032.028336786, 7911135.9375, 7911212.5, 7911237.513696215, 7911343.75, 7911557.229696015, 7911713.515114998, 7911776.739822812, ...], [75.77937389746485, 8.367179937257717, 10.503209114925017, 9.989555650298486, 6.0995825202673375, 43.14871302795056, 72.58743574833545, 17.281379788990833, 45.30763093786949, 47.40295267998611, 73.41521427464102, 14.368674971670437, 125.10542131654205, 17.442605006343033, 20.91547369531325, 19.252343429260378, 45.24616875604569, 85.73801006426152, 102.83194273242984, 80.83169051820329, 19.55165468539642, 17.683104333543724, 101.39353206544018, 30.5444456634676, 16.80661915552132, 8.639008740070864, 16.95260496720971, 20.74085358999072, 14.954596534171472, 154.04795870627777, 8.611655593080533, 30.635221090223524, 12.87653706018717, 11.017463410956914, 67.1777011103161, 11.627846633595372, 37.53364788447346, 34.00151860080031, 51.439057240185505, 46.0097006533129, 9.76536698345817, 34.11888809389086, 45.87090004779914, 11.438996879002135, 31.760431304755613, 105.72986698077467, 76.11708934338458, 13.922440517482315, 28.938230811668223, 20.17047975631866, 19.405885776892458, 73.06431498429984, 56.56573231842627, 66.04570618031512, 8.587700276129187, 31.19607809380726, 34.91508008489954, 81.4099649268382, 18.692360337220215, 96.25188009694837, 17.80148373920896, 6.81276847885302, 22.869223868761082, 19.32948449362711, 117.75638247261357, 5.8637872108543325, 9.793731095351434, 50.84437196544248, 18.379686403624024, 154.59988054999812, 51.54557775545571, 20.4010098197819, 28.230365804741922, 6.8865261165603755, 31.260488517687655, 60.23405372638837, 11.824519696410054, 9.683084796332814, 36.47577471690258, 47.135632334801095, 40.68054900345767, 16.573976700927343, 11.585283597541594, 60.71534842101325, 5.752381865496687, 36.64356507051883, 33.04821886155186, 12.274168584322046, 63.657223219327484, 11.198468290381946, 71.7279815919741, 7.157819979268884, 6.8399444393366275, 10.065802442814055, 24.266402466799214, 88.26040077253056, 68.17123005750895, 29.26997429836135, 34.97968024233741, 6.39661695249413, 19.68903428671507, 23.18771378654962, 52.84743806179313, 53.10299059481843, 18.28526696372884, 24.48052222710715, 73.11357833617416, 34.424919133908666, 91.35685698701002, 123.08106529688916, 87.13415741346168, 24.654307029067766, 68.34654618778373, 76.45548927740698, 61.074795488850434, 69.76895161790979, 5.078271522576487, 101.96787403721133, 18.906300094340093, 46.22239394653938, 21.452899302766497, 13.033811284334204, 13.965394955358395, 38.58268823051506, 23.23434023962686, 10.356349724613953, 15.106053679131115, 9.07648147652173, 32.86309318522515, 45.69956690671596, 46.95406542482937, 21.943003321868666, 20.946342989732866, 17.07471812467685, 24.301127017365488, 88.2448134835179, 78.77806992324014, 42.8365324810175, 36.330731636348986, 9.309107643111968, 17.912893659127956, 13.374338532356033, 46.85423515686195, 32.930727543102655, 11.324152302913726, 10.03827386805636, 20.860759419355308, 95.15315196199994, 55.29660869066636, 17.63161779629596, 94.51161777530042, 6.728574440965789, 88.41694943151353, 99.11619110826489, 25.58456205216752, 22.421411440849123, 33.39069616101093, 22.055496102491695, 7.362451815473454, 16.29826387759978, 5.3826765739746065, 43.952852466973106, 7.933450298557918, 24.298709881372467, 67.18400612341755, 37.710533453227576, 19.509058159312037, 22.313528462425076, 38.09476413275149, 23.597945929627336, 36.904400508805224, 9.693162063305595, 23.383909148283017, 14.985518615011554, 28.652328250117783, 68.04054738315563, 17.959353106607185, 34.74074615171496, 57.50985619236694, 34.492897680410564, 36.809950187726365, 20.17282093672212, 62.72444865866305, 9.240073794217443, 10.513618105667272, 60.00387050477879, 66.22676547627076, 54.645259910706216, 34.625679791057834, 6.937226958606414, 86.6810854180434, 7.247103273303318, 48.35663614934071, 17.11973428120411, 14.01082363345673, 41.9452272446992, 29.409388925887104, 42.963326135001054, 6.510652093344713, 75.43528711020492, 12.647838032155285, 17.97063187047301, 50.443142618789295, 20.070986275858484, 6.712831379249432, 11.094801216558666, 19.664633167558485, 6.33901174630344, 64.92771727549732, 5.1453752750689095, 55.83604302869856, 16.85339867106172, 23.7489918514547, 69.76647806889375, 66.06626952408169, 32.967571818683574, 10.374614303059332, 75.07814701355488, 12.225002351435194, 69.7297550531591, 28.36647573539748, 49.03233252580391, 5.762334262988985, 5.824119327815224, 6.143487585331891, 146.44889819327108, 134.4874355624203, 10.108937864995056, 15.79959927410972, 120.3472322802111, 5.814304436855161, 62.63917336313298, 5.038704764385947, 45.985028789108455, 57.6382423597973, 112.78084643596598, 55.48551891186036, 23.418338041346793, 6.3062224720280735, 177.1666660848416, 117.77988195206021, 83.14112515949078, 5.7758419035592805, 6.10206608620311, 23.51772046778874, 81.06400630461202, 59.86805869417154, 31.07054204951327, 66.33738438774688, 33.645292442630065, 15.685979169874269, 14.922931557053763, 57.465164321033654, 17.615275463493095, 5.422157986490545, 25.67234393381081, 35.05681599083393, 9.35738673340413, 42.866711340005565, 82.35633401184577, 8.68176302875034, 12.83766148151451, 14.080244494258956, 88.26419955215543, 15.747893870336169, 19.451241637371798, 20.513320304542788, 21.42122109826489, 7.1158535576387685, 35.184803669056244, 35.042841549370245, 22.896945309174583, 48.345420918436645, 11.659660533601057, 18.729159243674225, 8.820313441980334, 5.667548703189063, 19.044051520374836, 22.834090602558376, 40.00376214756454, 60.05263433468341, 33.690043471293876, 45.25695293051384, 13.517313448527275, 59.64885306076931, 5.416318041713238, 13.161681689771925, 59.14412741214049, 10.183296440089888, 5.915835687682028, 7.284754526605191, 53.98620339342874, 14.282908158603096, 39.24421662545646, 82.27447985625521, 12.933305348015256, 7.471244346618097, 9.58785710504903, 107.80592791781848, 51.973731851095565, 26.60603485405259, 13.057465341524766, 83.5055084413024, 76.76640292860596, 29.950348941158843, 12.880381279525489, 51.03348769947334, 6.752842577256056, 15.613500410316842, 17.446031322948368, 105.1510997846725, 6.70598001871314, 24.36848903597608, 6.943295526006815, 124.93039785274189, 9.958133006181633, 10.975811972245326, 38.17414473582978, 104.25507528527086, 10.105145605970087, 17.82031532732893, 20.69793605720544, 48.7490350217041, 31.879408600632246, 22.684814917758473, 62.76060136374565, 44.37650071879589, 21.911945792776187, 7.226471815938998, 9.752509685001176, 60.10227736153959, 18.154873551960534, 8.225091028351152, 52.618021102276884, 90.48965006758985, 72.7643507364083, 45.70408038862092, 20.060827173480302, 22.322878635373733, 72.61359086650145, 20.982199140717558, 123.420716170709, 13.78154296255747, 19.81391399217208, 54.45008562716415, 46.164265267071066, 35.13935281136783, 6.996806021269423, 127.2095998391403, 63.13546477406838, 77.38489606922633, 90.43334354362584, 23.84141199765034, 6.935226167039879, 15.549029264273582, 5.434801151217527, 46.442484173285564, 159.54601011805377, 19.84257032637231, 65.35703407493047, 50.70324853763318, 10.520490325810902, 5.909918068665932, 5.281069574418615, 35.711422905641356, 37.55445892516226, 22.61805894576211, 79.55499765146837, 11.069991922200623, 8.325545527581006, 109.38984048442693, 48.01666869058602, 88.83384151039645, 8.090652548037129, 52.18302188128803, 28.24312455227844, 30.255598333004965, 33.3258459676234, 73.17108919742444, 7.78474320150352, 14.89805927563407, 73.08485023024363, 111.11030808707271, 21.757369883424882, 18.79509846836806, 9.496215492274008, 55.5922892764183, 12.009153332763232, 38.8148294832861, 16.91272336660956, 89.91671658653931, 11.179766826080558, 16.864303503401832, 59.303737948752726, 25.073564447779194, 16.232582119562505, 25.12413508844568, 166.0654524560879, 37.70339402455172, 15.934270268577777, 56.483615865427645, 31.52536601870993, 48.51380594305171, 44.52146149182937, 23.60704859103825, 40.6178422086074, 90.16490700223767, 12.53215500759742, 14.362567958951075, 15.619933157643509, 169.7433376933799, 60.1644157332851, 97.7065586835532, 23.677167950409363, 6.206591847102658, 43.6964187128362, 7.893478865511607, 9.906057811341132, 5.475080872883204, 37.10915225724797, 26.05498474283391, 76.37904310608388, 99.83514125552134, 15.214633230643365, 7.108337224286823, 81.08198246738667, 11.287411955779925, 65.85452701122087, 13.693270163810617, 9.843851948395645, 93.764006151584, 18.61021186295971, 20.423668832546774, 15.457464700363506, 89.26617840323664, 22.58102379103228, 5.929223817367708, 42.679640531171685, 13.043873412000382, 17.923000310621358, 10.306955657621158, 6.133676949097629, 75.95577932103919, 19.960651467456664, 22.458591568968238, 57.19862923460107, 6.335848137835302, 10.50025026993599, 6.476634666862084, 74.62467429727346, 10.109580788676647, 13.90089927964734, 12.763017989725693, 18.604483326122807, 44.76672691976929, 68.98452442633321, 38.046941978230585, 57.40025924173921, 7.719701791477671, 126.72075139167391, 27.53802652233286, 19.52344901257016, 12.475331234280022, 92.59571620654681, 64.40737608131752, 32.40073915651278, 35.02777007910585, 64.6578237436517, 16.93689502999482, 14.01434518693305, 40.0877209478256, 77.94900364890809, 8.683723943750923, 17.535776901945425, 8.522748410225779, 34.38512680800052, 53.258290447154515, 46.14220257830637, 28.920176403430798, 11.159168306861021, 6.8616437821970955, 14.291818754850429, 53.79660007924667, 15.864266942213769, 12.265100122004123, 14.23115237066384, 5.229895940246163, 36.230488560260056, 69.90890273766556, 11.220501572211255, 68.48688167261253, 62.90889731659663, 8.248744808802472, 112.7899207049727, 28.493794623212327, 14.477614269303894, 9.865454358398159, 80.72844296641942, 16.313161927782637, 155.72694985774538, 12.775923936277666, 93.93659734282265, 37.774857000383896, 95.84150510774452, 96.93127432035436, 41.56590795437736, 29.895759222298793, 67.03999199049302, 8.519194236266825, 86.14203056297272, 23.57741987229555, 24.82519470244781, 63.369110488716565, 83.2043698292779, 8.88782718745094, 13.122817517740973, 60.50488014642002, 17.481406367966258, 14.268624259161628, 27.032306639676182, 8.915011494855111, 36.89478561695919, 108.37507033553543, 42.79258607337552, 24.00444846724154, 11.909311686646644, 20.458438070988493, 16.851568440663172, 71.80792244885939, 6.4226936794104486, 78.19943720544401, 9.614854386799921, 118.86443121264003, 70.42524800422608, 10.403176909419091, 48.73771438253408, 6.251369965131291, 81.03038975425292, 92.90982759191047, 67.98714606037349, 15.15361062815472, 15.100603319083458, 26.938934715427525, 46.337690784526096, 12.422988296154312, 75.05232274342225, 35.10099202467861, 36.62492126099874, 9.549995221972857, 6.633586183880601, 7.433337805605962, 27.84139114781179, 87.79046509266604, 14.864606651815505, 31.211611872071394, 34.56455378170253, 28.548722944307443, 18.29799464928961, 17.46796332657174, 58.085819168357986, 11.77691026501157, 6.809550602885071, 27.030093132376926, 63.48276520560529, 30.606783047471488, 50.24720272889708, 75.96298091209687, 69.3487016435456, 9.797776965847337, 49.64098760244924, 8.408171654504237, 63.11439516961962, 20.106129064865016, 51.348272520865336, 15.22261429915703, 35.11025486977705, 52.205997335484895, 44.14153611438002, 56.33081431231807, 24.033821052873513, 6.653952061783126, 70.18401549175954, 50.34158739081083, 19.5041186936022, 78.91100155410064, 54.26606254244907, 9.19050732252967, 27.449828629180352, 5.618252845866535, 41.55802034194101, 210.4682709123854, 49.76721558804468, 14.22742409310264, 21.91323605486492, 19.49267102168269, 22.01030983310732, 93.02286868243118, 49.899584113922934, 141.62857149392872, 37.253879405811176, 48.4401434313253, 64.70314534332307, 6.2053579476273555, 5.041432658936154, 25.84666887944973, 19.449484258125533, 21.28999595835898, 13.5504047817461, 27.913217757766194, 15.270991479133716, 6.125906002299535, 63.657993707299774, 56.08244783866045, 140.9832946137617, 22.62354034890323, 22.857922700805716, 51.60597022650662, 35.423297451887514, 56.59010979617043, 9.372874059746922, 21.286536711450736, 34.310717709479604, 51.76073324766837, 45.76447631073582, 21.068080969700528, 5.539109684111969, 9.755986996496365, 23.841160456350345, 167.03285460666675, 15.79422102851615, 84.38012843751478, 28.785605316509347, 7.686316865513143, 62.26984474000328, 29.016839953642005, 81.20469784299127, 38.18305075614624, 17.139707607514065, 80.78636459778981, 51.199771741967346, 22.76817323871124, 11.95617364084799, 13.833423430825091, 8.281292678943387, 49.71017292539764, 74.59465302001314, 18.176594194617223, 37.803358122820384, 7.727257136195683, 18.363622967456642, 77.36975079664745, 64.05005228707356, 21.2759399741984, 50.12524862451983, 21.572418552369665, 5.672164002351123, 63.22637876178969, 39.32220674385834, 11.292609196520711, 5.365401122497758, 30.783894729895223, 23.333334649668437, 36.2467647106219, 15.669713964698907, 31.847276198152866, 54.78654344229245, 100.15894504507627, 13.154663414123261, 11.903317487631742, 42.277835307653234, 5.629287575100844, 59.77834948832195, 103.71616905331389, 55.20657842603028, 53.05532872602242, 99.10366572572732, 58.933424102564686, 140.78494267449938, 55.336970668112905, 101.32856640331687, 17.239112599334952, 7.148344862417927, 42.57973272845594, 36.66194370977249, 110.54856574637517, 21.93316353593562, 8.812933967158223, 69.25965484101668, 23.57764773696671, 14.809188300859176, 60.306820390184214, 65.2019204975692, 6.81234067096287, 58.25542066915908, 50.72478897658387, 17.198108186453442, 26.02306266524444, 17.893489516270314, 39.86543270134933, 15.483657906416056, 12.287870967717247, 11.85275947167925, 5.302664395706288, 21.4918426855442, 15.06990362993347, 78.16291106953707, 53.756605484317845, 6.960214806152007, 30.004322854164364, 66.73891785027284, 10.23573480770621, 58.506149779092084, 20.59129541903635, 55.65289418652223, 53.04869189922501, 35.095887727077695, 7.970183822488257, 19.195011608132816, 9.036737085531472, 38.421547357771445, 21.81789783955739, 72.03870296904579, 13.070421615724793, 24.43248869347152, 94.66423555195938, 48.512601635513164, 6.519070154139678, 39.7220067481685, 12.474010939879152, 37.329732002308425, 109.79057048239008, 6.150146280485079, 5.6445524199632935, 95.53571326293908, 73.13347941536583, 16.209117805437835, 78.91883180674998, 51.686433300796054, 32.88272626850591, 8.33810593474777, 33.827855435506585, 7.592639488999502, 106.80851516835213, 38.014175961594525, 20.08104059652176, 57.219326510496046, 17.240624622318663, 6.119412796569261, 16.292887100923153, 12.92524202964625, 31.81716924454163, 70.95771426346387, 20.5875050349473, 41.48534873433179, 14.692929090261519, 69.60782670068659, 108.50554691578682, 10.804423733281489, 17.05191263453782, 9.71388897342303, 17.407125322829412, 27.0932389877613, 6.481689443856208, 95.27759819239654, 14.385595210839332, 70.78779213016787, 17.348321916806636, 5.03986095044189, 51.74815714237859, 65.66007401248675, 10.382713957447052, 40.831200590955035, 143.23421368055125, 28.316137981113698, 15.233250831639616, 55.91890331107992, 184.38188554979897, 38.495429048704324, 70.40339905639908, 180.80856579634292, 39.59749122973318, 13.539302006503188, 6.926931451497743, 69.79388900618696, 20.84633968886833, 18.069784975195386, 60.70813952811352, 6.926952152596068, 8.070358253029854, 52.77980986846649, 8.045242051506238, 38.44252871199682, 7.356296707665336, 72.09725941787816, 46.47896201520056, 6.491246979640077, 10.224083435842811, 6.044199870067282, 24.353699338477004, 22.40532544261357, 5.3440410115856505, 35.60457229941485, 19.118165577622307, 14.902212489164697, 9.714907068985289, 20.20181349296059, 8.272721573847463, 9.69466987103742, 59.945806132145364, 19.999857777676997, 87.89485051492451, 38.28640357179888, 36.45895517751243, 127.10825807830109, 147.3428649567493, 23.96834087411002, 78.04122872618841, 74.14709460261932, 78.44250170089538, 63.972200698481856, 13.794046430432008, 164.09168701018413, 5.357210308997023, 80.7545993011994, 39.42706496235086, 33.908551214336256, 24.31544735771677, 101.01130535756585, 5.67170451546288, 57.13858160369107, 38.10447757733338, 12.326619646094212, 9.000638252250978, 95.9195757907156, 35.03679734156756, 42.53134986270152, 15.913744204762171, 63.69488076298886, 6.1866241733042235, 32.22754674694073, 45.737121706747224, 12.037625668919935, 68.39296283817029, 35.52255238958656, 14.651844872668256, 28.920086719301967, 62.03470462180543, 15.764977064637893, 21.781078362324237, 45.7583020118038, 47.79234955090532, 35.078102850952234, 50.57029483637628, 123.98302728497492, 101.58334694590967, 39.71484542033533, 25.23605808442791, 32.262191037373086, 67.1525138676788, 5.728037104469618, 13.370060992090933, 43.54751532213955, 72.44372075067331, 26.766943993505045, 47.42425617542001, 20.75929987885747, 7.882192250189279, 6.168543502619574, 54.41963591640561, 7.260879807876567, 50.0573315914881, 13.524240065801965, 14.350147033262195, 29.315860766754522, 15.537062968370547, 73.69959697930145, 116.20355195940836, 6.911461941382634, 98.28954104329003, 22.51035020899453, 12.44005032631512, 16.686831634142177, 10.697228467404678, 12.434843412035935, 10.245784245932342, 5.101548182073504, 6.2313301172358235, 6.255804646392783, 16.896062724601656, 5.9011022217482205, 29.280285434051088, 10.274521036388457, 6.086683582414464, 17.0379690463985, 22.256497823944862, 5.760224648051941, 17.89456260300704, 10.576082102251867, 7.567529830997005, 7.942443831757425, 9.853980567648486, 63.737747093064144, 7.599465858885653, 17.064377518017704, 11.935004054977215, 36.79135119703659, 10.376204886896502, 6.601915163070351, 72.15113650616763, 35.47531287844134, 55.72200970479812, 68.14225223311303, 53.71068492399354, 25.8310217866934, 23.407129002654802, 5.945196034992161, 17.40116374597166, 21.19889928871132, 14.679832610422947, 48.36888054554997, 27.63505420651791, 141.18377756493646, 161.77919700166413, 95.83576931721865, 11.848478812159211, 8.190406803213548, 13.639214485485349, 153.46692434726222, 7.817064122439665, 37.95946559608403, 15.508403542999886, 11.157787748560725, 160.87695928916384, 17.646359724967656, 132.26025561631852, 37.78525971063898, 6.242141614323182, 6.082811758511615, 12.699344127729027, 106.18394756728361, 37.019817138118945, 17.650754794943285, 108.48929290844448, 46.84103382897593, 9.293990467471895, 37.67113447543241, 29.40268371261204, 6.772348690424883, 46.75116462400055, 27.006323348318695, 8.063648119326782, 44.54004932020653, 22.3037916689983, 190.55216648303045, 58.77459749221617, 91.646159437676, 7.33690375892189, 26.891191968775296, 113.4641398549463, 13.408253284665072, 7.6659046186120055, 36.39458470955382, 13.490465553501322, 14.673961443351086, 5.278033810458571, 87.45947492036616, 65.53398352940366, 6.619858009052273, 109.4911495253516, 62.668299032523265, 12.895828309594785, 55.31508540543686, 5.248172781601375, 38.24725034502584, 54.251840748936495, 64.79470544474437, 48.56090763506081, 36.80824459530817, 165.4594052501177, 61.088246523315355, 40.64845255101111, 25.100152446763282, 47.266976095240395, 16.55085494133559, 5.587593080994215, 56.41421361989049, 21.82626128652824, 76.66999354153097, 40.918916955366605, 66.35741152380592, 8.83363099590283, 23.57208466159911, 65.33119158145465, 58.22148828621731, 112.86766160794522, 14.993971221577263, 46.348384084229764, 27.706948377006242, 76.58705226931363, 9.485979564942808, ...])
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);
([4508448.234817009, 4525662.649372791, 4529085.497506048, 4554180.375247385, 4557239.172206553, 4557490.766506883, 4563515.625, 4564120.815428437, 4566868.75, 4566873.4375, 4567509.375, 4629556.091128763, 4635393.75, 4635442.718468935, 4636655.690078248, 4637253.266905102, 4639490.625, 4639690.800652196, 4639891.434201347, 4640304.382394389, 4640694.039647637, 4641442.915055784, 4641668.75, 4641829.124908159, 4642141.041146311, 4657784.986863242, 4658283.256026653, 4659686.921132857, 4660429.643754438, 4706595.689188161, 4727358.380485758, 4727634.151556195, 4727644.639732772, 4728170.240805893, 4728473.4375, 4730201.860526125, 4730386.237443996, 4730973.111430643, 4731445.253987797, 4733012.5, 4735641.097203955, 4736866.081604873, 4738436.804585085, 4757968.94042531, 4758357.389577094, 4759188.707705552, 4809698.4375, 4810180.954212493, 4810193.75, 4810505.606338627, 4811518.011786587, 4812150.0, 4812731.170079997, 4812917.1875, 4813619.279095001, 4822650.0, 4823809.375, 4827253.125, 4827508.539464814, 4828785.9375, 4828791.215974677, 4829343.991842413, 4829460.7666340545, 4829520.982448296, 4829593.75, 4829985.026194197, 4830103.625452815, 4830155.784209378, 4830160.056201036, 4830208.493235723, 4830254.6875, 4830347.820580751, 4830474.408642336, 4830577.148974393, 4830600.0, 4830938.839160139, 4830962.904315161, 4830967.576060255, 4831059.375, 4831135.522232717, 4831171.564179624, 4831387.896061164, 4831390.899264409, 4832043.75, 4832147.56877751, 4832513.708733989, 4832750.0, 4833017.8150348365, 4833296.875, 4833581.29480417, 4833582.8125, 4835132.949067855, 4836078.496184472, 4837207.007209927, 4837434.11432472, 4837610.001879005, 4839087.5, 4839610.643490283, 4899572.916651352, 4915965.022498312, 4937868.5301100295, 5002345.26389926, 5002631.25, 5003039.0625, 5003855.354478243, 5004025.934655898, 5004795.3125, 5008346.707705403, 5027192.1253893925, 5036865.408779173, 5037942.133904375, 5040975.482914464, 5050543.201004543, 5066839.477177888, 5068998.4375, 5069145.3125, 5072208.321545082, 5073790.144275449, 5073822.632145832, 5075293.75, 5076427.620960582, 5076432.202211632, 5078101.280444007, 5080148.4375, 5080627.7834681, 5082701.005777276, 5083206.236621591, 5090680.932302299, 5091557.940907081, 5093228.118915548, 5093609.375, 5093831.043693493, 5093865.414932849, 5094936.391772517, 5095440.36689984, 5095767.1875, 5096461.994012191, 5096695.804993022, 5096709.375, 5097812.4735138975, 5106544.358957519, 5108840.7289437875, 5115800.454906914, 5117675.0, 5134134.497146527, 5134638.232345059, 5136991.6216851035, 5150476.5625, 5157492.1875, 5167609.722484697, 5176696.875, 5179570.134971309, 5208495.254950619, 5210337.231430711, 5212646.70617296, 5214168.338282063, 5214907.8125, 5215826.815157288, 5215830.531289544, 5215892.503086282, 5216077.705529078, 5216762.317879874, 5216794.579176406, 5217454.4292208785, 5217525.278520024, 5217637.5, 5217670.571705656, 5217715.006852177, 5217721.875, 5217723.125443287, 5217736.2477377355, 5218711.33644235, 5218796.595446944, 5218807.821818062, 5218968.403600125, 5219209.375, 5219480.303869705, 5219795.122367944, 5220294.846804229, 5220883.835041181, 5220982.355077155, 5221066.544114124, 6909701.385214708, 6922331.139977356, 7009629.2555688275, 7021548.211286401, 7025436.836235622, 7087324.697047077, 7088644.21881663, 7091171.124537322, 7113789.0625, 7114505.14486529, 7115073.4375, 7115320.786604773, 7115768.4823338045, 7116232.8125, 7128525.0, 7171360.469317619, 7171362.64867146, 7172003.125, 7172178.919660546, 7173395.93066151, 7195637.5, 7208196.219555032, 7219529.428257359, 7219631.228845529, 7220377.419840031, 7220967.7355185505, 7220968.311535183, 7221036.620624946, 7221881.9922800725, 7222366.049989572, 7222660.637363002, 7231150.0, 7237014.0625, 7271567.1875, 7285263.520603747, 7286826.5625, 7286830.291866298, 7288580.6979808025, 7289821.866940656, 7290350.0, 7364846.151719801, 7459065.76109632, 7459102.07880043, 7466254.094410639, 7473497.199874913, 7504263.295694558, 7514576.770777621, 7516264.0625, 7518545.316880233, 7518568.174179004, 7518640.455841059, 7518670.3125, 7519044.676689548, 7522801.3240174195, 7524085.9375, 7525955.9235240165, 7526140.927755781, 7527300.238245319, 7528926.055692818, 7529086.680337178, 7541297.9084005365, 7541392.320745791, 7541667.087893256, 7543080.152632172, 7543392.751017562, 7545555.846194012, 7547428.125, 7548225.623209691, 7548504.217039962, 7548639.057617326, 7548728.125, 7548905.247744877, 7548908.418513959, 7549252.961886474, 7549634.375, 7549773.468070514, 7549784.375, 7549788.408631933, 7549803.804339373, 7549825.873932701, 7549941.388780369, 7549976.5625, 7550139.2591144005, 7550388.848748065, 7550457.528051019, 7550604.180264141, 7550649.978660997, 7550820.3125, 7550821.26431551, 7550860.567584673, 7550934.072633288, 7550942.503106525, 7551046.941260259, 7551064.951662337, 7551160.303268113, 7551394.526114089, 7551431.813429999, 7551489.0625, 7551599.377249415, 7551866.5791930305, 7551906.045098011, 7552385.50588219, 7552688.564749878, 7553548.896553235, 7553569.751368239, 7553782.8125, 7553899.298202781, 7554227.850311088, 7554347.461823109, 7554895.797555343, 7555063.878266973, 7556299.60477702, 7582086.558620691, 7582189.97504823, 7582198.057192005, 7582906.538484705, 7583250.358346647, 7583485.9375, 7584474.894870691, 7584946.273913511, 7584982.7670260165, 7585028.113264343, 7585048.492543568, 7585343.078787352, 7585380.356002918, 7585626.508848769, 7585767.353298911, 7585767.71905736, 7586055.04372301, 7586351.267356466, 7586750.150044744, 7586907.088447834, 7586948.4375, 7587505.346072383, 7587513.963099206, 7587907.617377309, 7588150.4860156365, 7588205.479834249, 7588222.469035182, 7588225.978914615, 7588670.157478231, 7589439.0625, 7590833.874416019, 7591694.773989169, 7591884.375, 7592124.54098668, 7599497.259996758, 7612425.459301443, 7613551.5625, 7614832.279909287, 7615365.506890102, 7615415.625, 7616114.81428975, 7616309.375, 7616739.3572521405, 7616952.46834344, 7616999.0842516795, 7617051.242826378, 7617055.697212656, 7617319.180686894, 7618957.470794146, 7619698.342705427, 7622287.5, 7642596.9661412975, 7644753.125, 7645479.191111247, 7645614.0625, 7645826.645125745, 7645828.125, 7645923.349508834, 7646146.582065255, 7646207.053302804, 7646222.935106511, 7646483.731322277, 7646492.1875, 7646534.375, 7646577.4419303145, 7646584.375, 7646587.5, 7646635.510877158, 7646640.280053261, 7646663.734751764, 7646683.727945409, 7646713.204696304, 7646985.543332402, 7647003.125, 7647070.275259328, 7647142.260469595, 7647169.887039514, 7647343.733124653, 7647412.5, 7647505.860168265, 7647509.111844859, 7647549.98560488, 7647557.8125, 7647674.311194519, 7647776.442920018, 7647787.975421734, 7647912.488553448, 7647920.412910131, 7648074.775286, 7648119.838589911, 7648219.491569809, 7648256.4386899285, 7648277.557780137, 7648586.436638868, 7648837.5, 7650461.373609774, 7652755.8076331755, 7653065.658053013, 7653712.927041544, 7661493.75, 7670365.421952983, 7682797.176966528, 7686265.425414557, 7713318.883234933, 7741153.125, 7745961.175667276, 7746072.98589945, 7746121.875, 7746148.4375, 7746168.75, 7746179.37616691, 7746653.017628313, 7746924.9448639555, 7746983.557049345, 7747049.839337228, 7747228.292290622, 7747312.070331361, 7747504.6875, 7747550.0, 7747800.796006523, 7749465.129755639, 7752239.0625, 7771655.424496286, 7776397.48449725, 7776494.056577655, 7777846.875, 7778987.913991641, 7779451.395891611, 7779715.625, 7780295.382358111, 7780724.9498744635, 7781865.625, 7782176.662326864, 7782315.345299006, 7782344.941321555, 7782367.737158658, 7782429.6875, 7782736.652635529, 7783007.198167889, 7783104.816586657, 7783137.5, 7783169.915056015, 7783454.569837132, 7783670.3125, 7783847.199276812, 7783905.2980742585, 7784030.652726731, 7784878.552170052, 7785271.822125432, 7785363.393811943, 7785527.716629502, 7785714.391059855, 7786380.212205475, 7786393.307709163, 7786442.120469285, 7786518.326233074, 7786844.546263813, 7786995.009779836, 7788158.655686912, 7788658.526805546, 7790310.119330851, 7790398.4375, 7790798.071008458, 7791798.09642966, 7792254.998421676, 7792514.0625, 7792598.385595259, 7792970.06793795, 7793785.094412891, 7795034.375, 7795400.0, 7795453.125, 7795482.038596034, 7795496.851048027, 7795581.690610642, 7795709.658422889, 7795773.4375, 7795925.0, 7795992.8699023165, 7796005.234361194, 7796006.671408124, 7796050.0, 7796079.6875, 7796099.908008784, 7796170.3125, 7796184.395035278, 7796187.972462089, 7796246.467624151, 7796534.332727974, 7796537.722717492, 7796624.060783128, 7796676.362749751, 7796840.0708468845, 7797025.0, 7797096.875, 7797354.746066969, 7797366.923910389, 7797375.0, 7797381.177766358, 7797412.785333064, 7797463.66158449, 7797521.74772431, 7797750.570591582, 7797757.5614213245, 7798159.872563479, 7798382.9678126, 7798574.553467551, 7798790.625, 7798871.875, 7799006.25, 7799103.423122362, 7799201.290805957, 7799217.604596946, 7799625.0, 7799655.102918976, 7799825.0, 7800045.1342126345, 7800099.779703961, 7800215.625, 7800423.4375, 7800774.424277201, 7800802.549079216, 7800888.310528772, 7800904.547726658, 7801006.061500587, 7801142.107256833, 7801146.337768759, 7801153.125, 7801323.4375, 7801377.123506976, 7801424.719605581, 7801564.510936559, 7801673.513173644, 7801717.612144826, 7801729.6875, 7801858.951513021, 7801878.125, 7801931.567223103, 7801965.177151349, 7802057.117568305, 7802193.231110792, 7802202.96272116, 7802551.436183068, 7802780.893443342, 7802883.494200546, 7802996.384174364, 7803010.749923582, 7803621.754654638, 7803812.414385981, 7803843.057250793, 7803906.945945995, 7804146.152087225, 7804887.64703242, 7804940.936136798, 7805720.56017963, 7806761.812429378, 7807121.379481381, 7807749.964509398, 7807954.6875, 7808206.22967628, 7808710.9375, 7808807.8125, 7809300.0, 7809613.168906685, 7810022.1422365615, 7810044.222867978, 7810426.941600822, 7810712.726338944, 7810835.569725672, 7810865.625, 7810994.925886939, 7811303.125, 7811563.880370882, 7811675.0, 7811772.379458332, 7812039.0625, 7812062.723070118, 7812157.8125, 7812771.223734183, 7813486.597499306, 7813534.182378203, 7814058.796880152, 7814421.875, 7814423.380270764, 7814637.309056473, 7815556.446538158, 7815622.862805565, 7815951.5625, 7816281.25, 7816872.711968057, 7818456.1159473425, 7819957.302079109, 7820146.703532446, 7820778.068242296, 7824857.8883262025, 7825433.320319017, 7829396.538276137, 7830057.8125, 7831243.549125682, 7831251.639783068, 7831347.710498671, 7831726.994487621, 7831760.9375, 7831762.5, 7832025.0, 7832071.782776182, 7832259.375, 7832525.0, 7832836.994339249, 7832917.180896106, 7833151.4105946105, 7833164.892435321, 7833272.916895842, 7833303.890765397, 7833454.291439448, 7833521.958838762, 7833559.730876788, 7833579.6875, 7833587.5, 7833620.3125, 7833794.918816197, 7833821.501735169, 7833841.724631906, 7833845.3125, 7833856.25, 7833901.611141828, 7833965.104040638, 7833973.436401867, 7834051.5625, 7834053.857622725, 7834058.831311546, 7834075.123604547, 7834102.025297022, 7834157.899808793, 7834242.080815658, 7834308.019569352, 7834345.893826366, 7834353.125, 7834387.724005041, 7834431.25, 7834445.534738606, 7834492.1875, 7834576.5625, 7834581.727705707, 7834660.9375, 7834748.4375, 7834857.431477711, 7834861.4098998, 7834951.237860409, 7835007.80249327, 7835020.233043407, 7835026.5625, 7835066.275368199, 7835070.105024721, 7835353.455354296, 7835406.92879485, 7835425.3948633615, 7835515.142723035, 7835541.351347296, 7835573.4375, 7835726.268244285, 7835930.692356502, 7835950.0, 7837076.5625, 7837093.852998491, 7837250.6695696935, 7837525.563748436, 7837532.7760798605, 7839248.4375, 7839784.553777204, 7840007.141052872, 7840126.579197227, 7840173.134952083, 7840196.311207212, 7840384.820349966, 7840387.5, 7840394.022289609, 7840475.0, 7840492.092299873, 7840503.125, 7840510.0793594485, 7840562.5, 7840616.183159369, 7840629.301328253, 7840657.8125, 7840752.169755031, 7840773.932961335, 7841100.101327824, 7841107.8125, 7841228.340895479, 7841244.424817966, 7841250.038452261, 7841332.128314207, 7841357.660155708, 7841616.8738272, 7842084.3340150425, 7842154.6875, 7842182.8125, 7842193.989783592, 7842246.47727832, 7842525.0, 7842616.113170422, 7842695.171752353, 7842756.855846724, 7842935.9375, 7842972.010321207, 7842972.508940741, 7842978.544120249, 7843051.93280403, 7843077.624873927, 7843468.783282777, 7843735.356817279, 7843741.276157542, 7843744.661435732, 7843855.587200957, 7844073.4375, 7844241.530561842, 7845010.9375, 7845332.21708295, 7845784.033775057, 7846403.125, 7846446.875, 7846577.474601239, 7846599.233997263, 7846787.129665464, 7846841.81174591, 7847164.209794557, 7847495.425479724, 7847544.716432622, 7847637.623214217, 7847896.875, 7847961.205289137, 7848072.076012036, 7848310.9375, 7848360.093824675, 7848401.145847556, 7848432.3839718215, 7848459.951245878, 7848836.476102593, 7849217.1875, 7849412.314814529, 7849587.79706444, 7849695.3125, 7849739.0625, 7849783.109162087, 7849928.221186629, 7850108.881695181, 7850471.8456021845, 7850498.4375, 7850500.0, 7850523.829829929, 7850676.135616135, 7850722.3707293, 7850811.233329385, 7850890.107747137, 7851093.096825919, 7851264.03760212, 7851595.3125, 7851777.229150939, 7851880.867436118, 7851954.620716659, 7851972.1661467245, 7852157.410313185, 7852227.907836016, 7852490.797093868, 7852491.045173908, 7852633.337357627, 7852818.673237963, 7852976.527953996, 7853285.9375, 7853289.270781354, 7853371.875, 7853391.180171791, 7853465.524892035, 7853706.25, 7853934.944106664, 7853941.652150061, 7854032.8125, 7854536.805368423, 7854796.207192209, 7855280.824655275, 7855714.843735801, 7857360.598647806, 7857614.0625, 7857748.4375, 7858056.603205705, 7858751.959270311, 7865877.701061401, 7866114.829448058, 7871563.333209097, 7871707.245125485, 7871776.2293160185, 7871959.294586954, 7871964.829539078, 7871993.317450473, 7872760.9375, 7873644.826435672, 7873821.434667839, 7874186.76141515, 7874712.5, 7875195.3125, 7875665.651459348, 7875952.458163577, 7876257.379503968, 7876509.12078152, 7876663.649329522, 7876685.999218638, 7876696.875, 7876922.859109718, 7876923.448481856, 7877491.046212575, 7877574.150625756, 7877726.536206346, 7877811.337992409, 7877821.875, 7878364.9610391045, 7878389.665212932, 7878509.375, 7878569.415087575, 7878617.139341682, 7878850.666573863, 7878976.728490849, 7879141.577096891, 7879232.04627279, 7879262.5, 7879611.509450404, 7880127.787424331, 7880383.868466603, 7880405.126988242, 7880450.0, 7880451.5625, 7880870.8190111425, 7881087.002735077, 7881390.91066105, 7881461.934755296, 7881679.6875, 7881756.25, 7882120.721435659, 7882212.081079353, 7882494.759717756, 7882662.5, 7882728.147893607, 7883425.233656519, 7883661.631899123, 7883730.584484892, 7883795.637148202, 7883831.69505803, 7883970.825856988, 7884013.476866248, 7884159.375, 7884231.0952122165, 7884240.625, 7884279.6875, 7884289.262979542, 7884297.965891882, 7884332.667590401, 7884342.1875, 7884487.5, 7884555.600589109, 7884643.553351376, 7884684.958460622, 7884757.59576948, 7884896.89786132, 7884928.583273184, 7884931.922778477, 7885111.266740301, 7885135.453492796, 7885165.625, 7885175.0, 7885228.773623654, 7885240.625, 7885407.964057994, 7885461.648091389, 7885552.302103393, 7885562.5, 7885577.067620404, 7885881.25, 7885898.290552023, 7885952.960686723, 7885959.375, 7886014.210442432, 7886061.518203144, 7886090.951709086, 7886102.261021341, 7886148.3981743585, 7886155.846266686, 7886180.391128713, 7886201.955696116, 7886279.3934548395, 7886280.388787568, 7886289.976567853, 7886295.468962583, 7886315.335729997, 7886523.346783663, 7886600.432997405, 7886688.611900232, 7886742.1875, 7886794.688232278, 7886856.236375969, 7886856.70875107, 7887033.948266943, 7887471.121060137, 7887569.153582724, 7887640.240888212, 7887987.400182008, 7888008.662135219, 7888038.059493788, 7888209.826139047, 7888232.802059407, 7888517.651565595, 7888689.524111163, 7888762.5, 7889143.209390677, 7889472.5703635495, 7889581.158475628, 7890325.0, 7890840.625, 7891412.430137343, 7893466.1070123445, 7894151.409596016, 7894358.446316648, 7895243.816252514, 7895617.7113275, 7895646.3449931955, 7895823.367109159, 7896009.274150887, 7896014.0158916265, 7896019.880269554, 7896076.5625, 7896388.237971127, 7896814.4793832125, 7896823.2511021625, 7896833.985497274, 7896937.5, 7896995.867379899, 7897040.215582153, 7897326.703684349, 7897570.331659989, 7897717.1875, 7898456.8154344745, 7898497.118026163, 7898593.75, 7898643.5490688775, 7899179.636500813, 7899483.629025753, 7899606.820401977, 7899955.604918506, 7900192.753666287, 7900363.248080228, 7900507.8125, 7900546.830419838, 7901388.903554818, 7901436.943859275, 7901443.794129072, 7901708.840507646, 7904205.612741951, 7904271.428223872, 7904404.6875, 7905055.82760116, 7905146.771928718, 7905653.125, 7906015.288422447, 7906022.635763569, 7906220.224122585, 7906854.411113486, 7907212.02974418, 7907406.4200037215, 7907505.711567983, 7907758.9339558985, 7907920.2404889455, 7908130.821553954, 7908242.965600895, 7908515.625, 7908627.360206069, 7908900.0, 7908912.5, 7908913.3975199675, 7908932.109759906, 7908945.420312, 7909044.241366177, 7909229.6875, 7909305.465755842, 7909405.723872895, 7909424.813926074, 7909606.25, 7909635.9375, 7909843.75, 7909906.048775041, 7909914.558690434, 7910039.429098712, 7910083.886766582, 7910143.75, 7910265.385276244, 7910283.104864996, 7910354.6875, 7910443.75, 7910472.783649589, 7910569.998383689, 7911032.028336786, 7911135.9375, 7911212.5, 7911237.513696215, 7911343.75, 7911557.229696015, 7911713.515114998, 7911776.739822812, ...], [75.77937389746485, 8.367179937257717, 10.503209114925017, 9.989555650298486, 6.0995825202673375, 43.14871302795056, 72.58743574833545, 17.281379788990833, 45.30763093786949, 47.40295267998611, 73.41521427464102, 14.368674971670437, 125.10542131654205, 17.442605006343033, 20.91547369531325, 19.252343429260378, 45.24616875604569, 85.73801006426152, 102.83194273242984, 80.83169051820329, 19.55165468539642, 17.683104333543724, 101.39353206544018, 30.5444456634676, 16.80661915552132, 8.639008740070864, 16.95260496720971, 20.74085358999072, 14.954596534171472, 154.04795870627777, 8.611655593080533, 30.635221090223524, 12.87653706018717, 11.017463410956914, 67.1777011103161, 11.627846633595372, 37.53364788447346, 34.00151860080031, 51.439057240185505, 46.0097006533129, 9.76536698345817, 34.11888809389086, 45.87090004779914, 11.438996879002135, 31.760431304755613, 105.72986698077467, 76.11708934338458, 13.922440517482315, 28.938230811668223, 20.17047975631866, 19.405885776892458, 73.06431498429984, 56.56573231842627, 66.04570618031512, 8.587700276129187, 31.19607809380726, 34.91508008489954, 81.4099649268382, 18.692360337220215, 96.25188009694837, 17.80148373920896, 6.81276847885302, 22.869223868761082, 19.32948449362711, 117.75638247261357, 5.8637872108543325, 9.793731095351434, 50.84437196544248, 18.379686403624024, 154.59988054999812, 51.54557775545571, 20.4010098197819, 28.230365804741922, 6.8865261165603755, 31.260488517687655, 60.23405372638837, 11.824519696410054, 9.683084796332814, 36.47577471690258, 47.135632334801095, 40.68054900345767, 16.573976700927343, 11.585283597541594, 60.71534842101325, 5.752381865496687, 36.64356507051883, 33.04821886155186, 12.274168584322046, 63.657223219327484, 11.198468290381946, 71.7279815919741, 7.157819979268884, 6.8399444393366275, 10.065802442814055, 24.266402466799214, 88.26040077253056, 68.17123005750895, 29.26997429836135, 34.97968024233741, 6.39661695249413, 19.68903428671507, 23.18771378654962, 52.84743806179313, 53.10299059481843, 18.28526696372884, 24.48052222710715, 73.11357833617416, 34.424919133908666, 91.35685698701002, 123.08106529688916, 87.13415741346168, 24.654307029067766, 68.34654618778373, 76.45548927740698, 61.074795488850434, 69.76895161790979, 5.078271522576487, 101.96787403721133, 18.906300094340093, 46.22239394653938, 21.452899302766497, 13.033811284334204, 13.965394955358395, 38.58268823051506, 23.23434023962686, 10.356349724613953, 15.106053679131115, 9.07648147652173, 32.86309318522515, 45.69956690671596, 46.95406542482937, 21.943003321868666, 20.946342989732866, 17.07471812467685, 24.301127017365488, 88.2448134835179, 78.77806992324014, 42.8365324810175, 36.330731636348986, 9.309107643111968, 17.912893659127956, 13.374338532356033, 46.85423515686195, 32.930727543102655, 11.324152302913726, 10.03827386805636, 20.860759419355308, 95.15315196199994, 55.29660869066636, 17.63161779629596, 94.51161777530042, 6.728574440965789, 88.41694943151353, 99.11619110826489, 25.58456205216752, 22.421411440849123, 33.39069616101093, 22.055496102491695, 7.362451815473454, 16.29826387759978, 5.3826765739746065, 43.952852466973106, 7.933450298557918, 24.298709881372467, 67.18400612341755, 37.710533453227576, 19.509058159312037, 22.313528462425076, 38.09476413275149, 23.597945929627336, 36.904400508805224, 9.693162063305595, 23.383909148283017, 14.985518615011554, 28.652328250117783, 68.04054738315563, 17.959353106607185, 34.74074615171496, 57.50985619236694, 34.492897680410564, 36.809950187726365, 20.17282093672212, 62.72444865866305, 9.240073794217443, 10.513618105667272, 60.00387050477879, 66.22676547627076, 54.645259910706216, 34.625679791057834, 6.937226958606414, 86.6810854180434, 7.247103273303318, 48.35663614934071, 17.11973428120411, 14.01082363345673, 41.9452272446992, 29.409388925887104, 42.963326135001054, 6.510652093344713, 75.43528711020492, 12.647838032155285, 17.97063187047301, 50.443142618789295, 20.070986275858484, 6.712831379249432, 11.094801216558666, 19.664633167558485, 6.33901174630344, 64.92771727549732, 5.1453752750689095, 55.83604302869856, 16.85339867106172, 23.7489918514547, 69.76647806889375, 66.06626952408169, 32.967571818683574, 10.374614303059332, 75.07814701355488, 12.225002351435194, 69.7297550531591, 28.36647573539748, 49.03233252580391, 5.762334262988985, 5.824119327815224, 6.143487585331891, 146.44889819327108, 134.4874355624203, 10.108937864995056, 15.79959927410972, 120.3472322802111, 5.814304436855161, 62.63917336313298, 5.038704764385947, 45.985028789108455, 57.6382423597973, 112.78084643596598, 55.48551891186036, 23.418338041346793, 6.3062224720280735, 177.1666660848416, 117.77988195206021, 83.14112515949078, 5.7758419035592805, 6.10206608620311, 23.51772046778874, 81.06400630461202, 59.86805869417154, 31.07054204951327, 66.33738438774688, 33.645292442630065, 15.685979169874269, 14.922931557053763, 57.465164321033654, 17.615275463493095, 5.422157986490545, 25.67234393381081, 35.05681599083393, 9.35738673340413, 42.866711340005565, 82.35633401184577, 8.68176302875034, 12.83766148151451, 14.080244494258956, 88.26419955215543, 15.747893870336169, 19.451241637371798, 20.513320304542788, 21.42122109826489, 7.1158535576387685, 35.184803669056244, 35.042841549370245, 22.896945309174583, 48.345420918436645, 11.659660533601057, 18.729159243674225, 8.820313441980334, 5.667548703189063, 19.044051520374836, 22.834090602558376, 40.00376214756454, 60.05263433468341, 33.690043471293876, 45.25695293051384, 13.517313448527275, 59.64885306076931, 5.416318041713238, 13.161681689771925, 59.14412741214049, 10.183296440089888, 5.915835687682028, 7.284754526605191, 53.98620339342874, 14.282908158603096, 39.24421662545646, 82.27447985625521, 12.933305348015256, 7.471244346618097, 9.58785710504903, 107.80592791781848, 51.973731851095565, 26.60603485405259, 13.057465341524766, 83.5055084413024, 76.76640292860596, 29.950348941158843, 12.880381279525489, 51.03348769947334, 6.752842577256056, 15.613500410316842, 17.446031322948368, 105.1510997846725, 6.70598001871314, 24.36848903597608, 6.943295526006815, 124.93039785274189, 9.958133006181633, 10.975811972245326, 38.17414473582978, 104.25507528527086, 10.105145605970087, 17.82031532732893, 20.69793605720544, 48.7490350217041, 31.879408600632246, 22.684814917758473, 62.76060136374565, 44.37650071879589, 21.911945792776187, 7.226471815938998, 9.752509685001176, 60.10227736153959, 18.154873551960534, 8.225091028351152, 52.618021102276884, 90.48965006758985, 72.7643507364083, 45.70408038862092, 20.060827173480302, 22.322878635373733, 72.61359086650145, 20.982199140717558, 123.420716170709, 13.78154296255747, 19.81391399217208, 54.45008562716415, 46.164265267071066, 35.13935281136783, 6.996806021269423, 127.2095998391403, 63.13546477406838, 77.38489606922633, 90.43334354362584, 23.84141199765034, 6.935226167039879, 15.549029264273582, 5.434801151217527, 46.442484173285564, 159.54601011805377, 19.84257032637231, 65.35703407493047, 50.70324853763318, 10.520490325810902, 5.909918068665932, 5.281069574418615, 35.711422905641356, 37.55445892516226, 22.61805894576211, 79.55499765146837, 11.069991922200623, 8.325545527581006, 109.38984048442693, 48.01666869058602, 88.83384151039645, 8.090652548037129, 52.18302188128803, 28.24312455227844, 30.255598333004965, 33.3258459676234, 73.17108919742444, 7.78474320150352, 14.89805927563407, 73.08485023024363, 111.11030808707271, 21.757369883424882, 18.79509846836806, 9.496215492274008, 55.5922892764183, 12.009153332763232, 38.8148294832861, 16.91272336660956, 89.91671658653931, 11.179766826080558, 16.864303503401832, 59.303737948752726, 25.073564447779194, 16.232582119562505, 25.12413508844568, 166.0654524560879, 37.70339402455172, 15.934270268577777, 56.483615865427645, 31.52536601870993, 48.51380594305171, 44.52146149182937, 23.60704859103825, 40.6178422086074, 90.16490700223767, 12.53215500759742, 14.362567958951075, 15.619933157643509, 169.7433376933799, 60.1644157332851, 97.7065586835532, 23.677167950409363, 6.206591847102658, 43.6964187128362, 7.893478865511607, 9.906057811341132, 5.475080872883204, 37.10915225724797, 26.05498474283391, 76.37904310608388, 99.83514125552134, 15.214633230643365, 7.108337224286823, 81.08198246738667, 11.287411955779925, 65.85452701122087, 13.693270163810617, 9.843851948395645, 93.764006151584, 18.61021186295971, 20.423668832546774, 15.457464700363506, 89.26617840323664, 22.58102379103228, 5.929223817367708, 42.679640531171685, 13.043873412000382, 17.923000310621358, 10.306955657621158, 6.133676949097629, 75.95577932103919, 19.960651467456664, 22.458591568968238, 57.19862923460107, 6.335848137835302, 10.50025026993599, 6.476634666862084, 74.62467429727346, 10.109580788676647, 13.90089927964734, 12.763017989725693, 18.604483326122807, 44.76672691976929, 68.98452442633321, 38.046941978230585, 57.40025924173921, 7.719701791477671, 126.72075139167391, 27.53802652233286, 19.52344901257016, 12.475331234280022, 92.59571620654681, 64.40737608131752, 32.40073915651278, 35.02777007910585, 64.6578237436517, 16.93689502999482, 14.01434518693305, 40.0877209478256, 77.94900364890809, 8.683723943750923, 17.535776901945425, 8.522748410225779, 34.38512680800052, 53.258290447154515, 46.14220257830637, 28.920176403430798, 11.159168306861021, 6.8616437821970955, 14.291818754850429, 53.79660007924667, 15.864266942213769, 12.265100122004123, 14.23115237066384, 5.229895940246163, 36.230488560260056, 69.90890273766556, 11.220501572211255, 68.48688167261253, 62.90889731659663, 8.248744808802472, 112.7899207049727, 28.493794623212327, 14.477614269303894, 9.865454358398159, 80.72844296641942, 16.313161927782637, 155.72694985774538, 12.775923936277666, 93.93659734282265, 37.774857000383896, 95.84150510774452, 96.93127432035436, 41.56590795437736, 29.895759222298793, 67.03999199049302, 8.519194236266825, 86.14203056297272, 23.57741987229555, 24.82519470244781, 63.369110488716565, 83.2043698292779, 8.88782718745094, 13.122817517740973, 60.50488014642002, 17.481406367966258, 14.268624259161628, 27.032306639676182, 8.915011494855111, 36.89478561695919, 108.37507033553543, 42.79258607337552, 24.00444846724154, 11.909311686646644, 20.458438070988493, 16.851568440663172, 71.80792244885939, 6.4226936794104486, 78.19943720544401, 9.614854386799921, 118.86443121264003, 70.42524800422608, 10.403176909419091, 48.73771438253408, 6.251369965131291, 81.03038975425292, 92.90982759191047, 67.98714606037349, 15.15361062815472, 15.100603319083458, 26.938934715427525, 46.337690784526096, 12.422988296154312, 75.05232274342225, 35.10099202467861, 36.62492126099874, 9.549995221972857, 6.633586183880601, 7.433337805605962, 27.84139114781179, 87.79046509266604, 14.864606651815505, 31.211611872071394, 34.56455378170253, 28.548722944307443, 18.29799464928961, 17.46796332657174, 58.085819168357986, 11.77691026501157, 6.809550602885071, 27.030093132376926, 63.48276520560529, 30.606783047471488, 50.24720272889708, 75.96298091209687, 69.3487016435456, 9.797776965847337, 49.64098760244924, 8.408171654504237, 63.11439516961962, 20.106129064865016, 51.348272520865336, 15.22261429915703, 35.11025486977705, 52.205997335484895, 44.14153611438002, 56.33081431231807, 24.033821052873513, 6.653952061783126, 70.18401549175954, 50.34158739081083, 19.5041186936022, 78.91100155410064, 54.26606254244907, 9.19050732252967, 27.449828629180352, 5.618252845866535, 41.55802034194101, 210.4682709123854, 49.76721558804468, 14.22742409310264, 21.91323605486492, 19.49267102168269, 22.01030983310732, 93.02286868243118, 49.899584113922934, 141.62857149392872, 37.253879405811176, 48.4401434313253, 64.70314534332307, 6.2053579476273555, 5.041432658936154, 25.84666887944973, 19.449484258125533, 21.28999595835898, 13.5504047817461, 27.913217757766194, 15.270991479133716, 6.125906002299535, 63.657993707299774, 56.08244783866045, 140.9832946137617, 22.62354034890323, 22.857922700805716, 51.60597022650662, 35.423297451887514, 56.59010979617043, 9.372874059746922, 21.286536711450736, 34.310717709479604, 51.76073324766837, 45.76447631073582, 21.068080969700528, 5.539109684111969, 9.755986996496365, 23.841160456350345, 167.03285460666675, 15.79422102851615, 84.38012843751478, 28.785605316509347, 7.686316865513143, 62.26984474000328, 29.016839953642005, 81.20469784299127, 38.18305075614624, 17.139707607514065, 80.78636459778981, 51.199771741967346, 22.76817323871124, 11.95617364084799, 13.833423430825091, 8.281292678943387, 49.71017292539764, 74.59465302001314, 18.176594194617223, 37.803358122820384, 7.727257136195683, 18.363622967456642, 77.36975079664745, 64.05005228707356, 21.2759399741984, 50.12524862451983, 21.572418552369665, 5.672164002351123, 63.22637876178969, 39.32220674385834, 11.292609196520711, 5.365401122497758, 30.783894729895223, 23.333334649668437, 36.2467647106219, 15.669713964698907, 31.847276198152866, 54.78654344229245, 100.15894504507627, 13.154663414123261, 11.903317487631742, 42.277835307653234, 5.629287575100844, 59.77834948832195, 103.71616905331389, 55.20657842603028, 53.05532872602242, 99.10366572572732, 58.933424102564686, 140.78494267449938, 55.336970668112905, 101.32856640331687, 17.239112599334952, 7.148344862417927, 42.57973272845594, 36.66194370977249, 110.54856574637517, 21.93316353593562, 8.812933967158223, 69.25965484101668, 23.57764773696671, 14.809188300859176, 60.306820390184214, 65.2019204975692, 6.81234067096287, 58.25542066915908, 50.72478897658387, 17.198108186453442, 26.02306266524444, 17.893489516270314, 39.86543270134933, 15.483657906416056, 12.287870967717247, 11.85275947167925, 5.302664395706288, 21.4918426855442, 15.06990362993347, 78.16291106953707, 53.756605484317845, 6.960214806152007, 30.004322854164364, 66.73891785027284, 10.23573480770621, 58.506149779092084, 20.59129541903635, 55.65289418652223, 53.04869189922501, 35.095887727077695, 7.970183822488257, 19.195011608132816, 9.036737085531472, 38.421547357771445, 21.81789783955739, 72.03870296904579, 13.070421615724793, 24.43248869347152, 94.66423555195938, 48.512601635513164, 6.519070154139678, 39.7220067481685, 12.474010939879152, 37.329732002308425, 109.79057048239008, 6.150146280485079, 5.6445524199632935, 95.53571326293908, 73.13347941536583, 16.209117805437835, 78.91883180674998, 51.686433300796054, 32.88272626850591, 8.33810593474777, 33.827855435506585, 7.592639488999502, 106.80851516835213, 38.014175961594525, 20.08104059652176, 57.219326510496046, 17.240624622318663, 6.119412796569261, 16.292887100923153, 12.92524202964625, 31.81716924454163, 70.95771426346387, 20.5875050349473, 41.48534873433179, 14.692929090261519, 69.60782670068659, 108.50554691578682, 10.804423733281489, 17.05191263453782, 9.71388897342303, 17.407125322829412, 27.0932389877613, 6.481689443856208, 95.27759819239654, 14.385595210839332, 70.78779213016787, 17.348321916806636, 5.03986095044189, 51.74815714237859, 65.66007401248675, 10.382713957447052, 40.831200590955035, 143.23421368055125, 28.316137981113698, 15.233250831639616, 55.91890331107992, 184.38188554979897, 38.495429048704324, 70.40339905639908, 180.80856579634292, 39.59749122973318, 13.539302006503188, 6.926931451497743, 69.79388900618696, 20.84633968886833, 18.069784975195386, 60.70813952811352, 6.926952152596068, 8.070358253029854, 52.77980986846649, 8.045242051506238, 38.44252871199682, 7.356296707665336, 72.09725941787816, 46.47896201520056, 6.491246979640077, 10.224083435842811, 6.044199870067282, 24.353699338477004, 22.40532544261357, 5.3440410115856505, 35.60457229941485, 19.118165577622307, 14.902212489164697, 9.714907068985289, 20.20181349296059, 8.272721573847463, 9.69466987103742, 59.945806132145364, 19.999857777676997, 87.89485051492451, 38.28640357179888, 36.45895517751243, 127.10825807830109, 147.3428649567493, 23.96834087411002, 78.04122872618841, 74.14709460261932, 78.44250170089538, 63.972200698481856, 13.794046430432008, 164.09168701018413, 5.357210308997023, 80.7545993011994, 39.42706496235086, 33.908551214336256, 24.31544735771677, 101.01130535756585, 5.67170451546288, 57.13858160369107, 38.10447757733338, 12.326619646094212, 9.000638252250978, 95.9195757907156, 35.03679734156756, 42.53134986270152, 15.913744204762171, 63.69488076298886, 6.1866241733042235, 32.22754674694073, 45.737121706747224, 12.037625668919935, 68.39296283817029, 35.52255238958656, 14.651844872668256, 28.920086719301967, 62.03470462180543, 15.764977064637893, 21.781078362324237, 45.7583020118038, 47.79234955090532, 35.078102850952234, 50.57029483637628, 123.98302728497492, 101.58334694590967, 39.71484542033533, 25.23605808442791, 32.262191037373086, 67.1525138676788, 5.728037104469618, 13.370060992090933, 43.54751532213955, 72.44372075067331, 26.766943993505045, 47.42425617542001, 20.75929987885747, 7.882192250189279, 6.168543502619574, 54.41963591640561, 7.260879807876567, 50.0573315914881, 13.524240065801965, 14.350147033262195, 29.315860766754522, 15.537062968370547, 73.69959697930145, 116.20355195940836, 6.911461941382634, 98.28954104329003, 22.51035020899453, 12.44005032631512, 16.686831634142177, 10.697228467404678, 12.434843412035935, 10.245784245932342, 5.101548182073504, 6.2313301172358235, 6.255804646392783, 16.896062724601656, 5.9011022217482205, 29.280285434051088, 10.274521036388457, 6.086683582414464, 17.0379690463985, 22.256497823944862, 5.760224648051941, 17.89456260300704, 10.576082102251867, 7.567529830997005, 7.942443831757425, 9.853980567648486, 63.737747093064144, 7.599465858885653, 17.064377518017704, 11.935004054977215, 36.79135119703659, 10.376204886896502, 6.601915163070351, 72.15113650616763, 35.47531287844134, 55.72200970479812, 68.14225223311303, 53.71068492399354, 25.8310217866934, 23.407129002654802, 5.945196034992161, 17.40116374597166, 21.19889928871132, 14.679832610422947, 48.36888054554997, 27.63505420651791, 141.18377756493646, 161.77919700166413, 95.83576931721865, 11.848478812159211, 8.190406803213548, 13.639214485485349, 153.46692434726222, 7.817064122439665, 37.95946559608403, 15.508403542999886, 11.157787748560725, 160.87695928916384, 17.646359724967656, 132.26025561631852, 37.78525971063898, 6.242141614323182, 6.082811758511615, 12.699344127729027, 106.18394756728361, 37.019817138118945, 17.650754794943285, 108.48929290844448, 46.84103382897593, 9.293990467471895, 37.67113447543241, 29.40268371261204, 6.772348690424883, 46.75116462400055, 27.006323348318695, 8.063648119326782, 44.54004932020653, 22.3037916689983, 190.55216648303045, 58.77459749221617, 91.646159437676, 7.33690375892189, 26.891191968775296, 113.4641398549463, 13.408253284665072, 7.6659046186120055, 36.39458470955382, 13.490465553501322, 14.673961443351086, 5.278033810458571, 87.45947492036616, 65.53398352940366, 6.619858009052273, 109.4911495253516, 62.668299032523265, 12.895828309594785, 55.31508540543686, 5.248172781601375, 38.24725034502584, 54.251840748936495, 64.79470544474437, 48.56090763506081, 36.80824459530817, 165.4594052501177, 61.088246523315355, 40.64845255101111, 25.100152446763282, 47.266976095240395, 16.55085494133559, 5.587593080994215, 56.41421361989049, 21.82626128652824, 76.66999354153097, 40.918916955366605, 66.35741152380592, 8.83363099590283, 23.57208466159911, 65.33119158145465, 58.22148828621731, 112.86766160794522, 14.993971221577263, 46.348384084229764, 27.706948377006242, 76.58705226931363, 9.485979564942808, ...])
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)