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 = 45348
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);
([4877478.125, 5011251.892046396, 5011701.151780769, 5013324.449207502, 5033018.018652489, 5035759.961668363, 5038653.810210283, 5163804.022283464, 5165888.238239414, 5170221.071645472, 5171175.0, 5171564.0625, 5172626.5625, 5172903.125, 5174623.4991148785, 5175446.855299862, 5261017.841588938, 5295384.375, 5378135.627957297, 5379171.349093651, 5379175.292605078, 5379177.936187685, 5379303.125, 5379309.3356788615, 5379395.3125, 5379895.3125, 5379935.497668644, 5380064.658582707, 5380366.404291916, 5407456.25, 5411664.558847521, 5412711.614963598, 5413181.979957019, 5413377.432861808, 5413854.705138946, 5414031.25, 5414156.081776218, 5414204.593589606, 5414588.718111803, 5414602.426956528, 5414657.948885188, 5414695.3125, 5415060.375858728, 5415081.613004492, 5415495.176912001, 5415639.0625, 5415799.540365767, 5415928.717613762, 5416194.771160359, 5417571.024331179, 5417585.494776704, 5418127.0532103665, 5418131.2397016715, 5424690.762397793, 5428417.977395061, 5463945.955536802, 5467067.420350723, 5468988.345409001, 5469970.09410653, 5469975.4308420485, 5471791.502533219, 5479362.15241849, 5483987.371657065, 5487028.603551922, 5487031.25, 5487906.952151615, 5487914.87861663, 5488129.6875, 5488295.235763613, 5489315.625, 5489850.0, 5490142.82400713, 5490299.033740429, 5490716.59578682, 5492326.387073781, 5494706.465555722, 5495093.384691714, 5495891.996740686, 5500390.33977429, 5500548.292620856, 5500744.882625268, 5514621.513101748, 5515511.504599328, 5515994.117923013, 5516000.574742534, 5517167.379361529, 5517222.773503052, 5517417.1875, 5517565.772116791, 5517792.346871159, 5518199.847229325, 5518231.245600878, 5518268.279534255, 5519124.475198952, 5519781.25, 5522076.529750192, 5522374.513380532, 5523016.4692087555, 5523065.94296366, 5524741.343062824, 5526249.974206307, 5526532.400035021, 5528642.1875, 5528675.444050476, 5529692.78482347, 5540948.639108943, 5543328.125, 5544139.0625, 5544727.388476198, 5561295.3125, 5571234.375, 5596901.5625, 6803120.3125, 6863207.779507087, 6870005.3898736155, 6905958.275317338, 6925293.836086755, 6925543.639872434, 6925685.9375, 6926078.250314064, 6926228.125, 6926615.625, 6926775.321649776, 6927580.533012483, 6928110.227451739, 6930729.927449233, 6930737.741938835, 6935351.048898712, 6936445.922640097, 6937131.019405516, 6942158.584843513, 6978610.9375, 6984703.125, 7014719.880859175, 7104143.75, 7113282.691159437, 7132518.6046421155, 7132518.624375082, 7132524.364316918, 7133075.0, 7133648.4375, 7134163.933415832, 7134168.30574098, 7134271.875, 7135074.84997177, 7135337.455722819, 7136282.388154726, 7138287.820416302, 7142090.5999144735, 7142448.4375, 7169766.364833272, 7254082.863835789, 7254453.050215568, 7255021.875, 7255206.25, 7255249.082882567, 7255860.502194555, 7255960.9375, 7256438.374833016, 7256623.252886861, 7256645.352588227, 7256873.4375, 7256881.170795441, 7257044.967311155, 7257418.0291540725, 7257444.887951361, 7257574.890353122, 7257807.327776896, 7259088.329769418, 7280320.3125, 7280335.3164808275, 7411687.044105654, 7411823.668623725, 7434380.252496549, 7438216.762070216, 7439422.310452057, 7441937.5, 7442575.121325681, 7457435.800373329, 7457782.8125, 7458720.3071998395, 7459026.540301555, 7459057.073593034, 7459229.642258611, 7459532.563087505, 7459746.875, 7459769.713278257, 7460842.548864368, 7461772.662446122, 7484479.6875, 7485057.634269938, 7485488.0163373845, 7485499.389265123, 7485509.119480141, 7485980.7306808075, 7486254.6875, 7486346.875, 7486473.790045312, 7487546.913077492, 7488635.924626759, 7489082.8125, 7490355.678445285, 7499317.360266728, 7510728.644245667, 7514778.62671918, 7514891.2637555525, 7517245.3125, 7517250.201699961, 7532712.716655319, 7539990.325793407, 7540452.818334423, 7541803.125, 7541857.678299986, 7542148.620728704, 7542157.8125, 7542566.747789511, 7542775.96192088, 7543185.51321533, 7543244.029179133, 7543404.372377224, 7543550.313536981, 7544495.334332384, 7544541.915508789, 7544657.845198014, 7544727.862947247, 7545582.8125, 7548135.402980972, 7590051.5625, 7590388.806830485, 7591547.913520871, 7597587.5, 7599294.293337671, 7599575.0, 7599766.407311432, 7599910.748737201, 7599921.875, 7599943.75, 7600590.625, 7603231.25, 7606011.526349086, 7606469.702463855, 7606580.080126829, 7612206.535221665, 7613873.4375, 7617018.962741587, 7626985.9375, 7630102.305405005, 7631421.548386872, 7632081.194602096, 7632246.772253109, 7635674.554925795, 7637654.705292134, 7638270.3125, 7642228.15220651, 7647087.5, 7652508.955440192, 7668218.75, 7669059.29133039, 7669245.3125, 7669752.686563576, 7670595.355397038, 7670729.407827208, 7670734.375, 7670974.350945892, 7670989.398499147, 7671044.376690188, 7671057.8125, 7671162.335293398, 7671289.976192015, 7671336.134234107, 7671343.440011083, 7671401.821528105, 7671488.592862354, 7671699.943484909, 7671742.71170878, 7671866.747937394, 7672068.407640469, 7672196.104203735, 7672239.317807729, 7672723.4375, 7672939.0625, 7673267.1875, 7673335.311750272, 7673358.048729657, 7674460.953353376, 7675020.231778183, 7675484.849312561, 7675498.0892940145, 7676513.7678431375, 7676528.037930543, 7676725.0, 7676806.123313076, 7677797.927902679, 7678009.375, 7679286.602554818, 7679403.125, 7679479.101814756, 7679825.306422139, 7679964.796354116, 7680143.157572528, 7680167.647179101, 7680207.417470434, 7680263.589969353, 7680309.596539398, 7680465.580780849, 7680572.211163606, 7680762.5, 7681210.171178487, 7681274.749191783, 7681395.970378493, 7681523.4375, 7681557.682540256, 7681782.8125, 7681795.874438991, 7681851.335257545, 7681892.978389594, 7681956.974428603, 7681958.760243882, 7682574.353000922, 7682658.532348242, 7682693.692133027, 7682695.000476298, 7682937.4952993505, 7683012.5, 7683156.25, 7683620.3125, 7684317.784581583, 7687403.191827174, 7687831.25, 7691074.148000158, 7691685.9375, 7691745.135298776, 7691773.19089199, 7692072.935276235, 7693114.551498076, 7693184.375, 7694847.296497082, 7695703.991791202, 7697138.017093483, 7701752.266863987, 7702373.211781701, 7703825.46578656, 7705731.25, 7711823.4375, 7711853.38610188, 7715066.77111973, 7715715.625, 7715921.05314069, 7716125.0, 7716353.14344503, 7717192.481980275, 7717262.616189834, 7717370.597939484, 7717389.105751304, 7717433.499090651, 7719688.662672723, 7719906.007501439, 7720842.954981359, 7720948.3442252735, 7723827.922571416, 7724046.968398012, 7724468.75, 7735322.79219827, 7735854.461410976, 7735996.875, 7736160.217126019, 7736198.4375, 7736214.314857238, 7737369.930395307, 7739004.215371043, 7739029.6875, 7739239.556622651, 7739303.323150887, 7739668.460106725, 7739671.711146957, 7739737.489336659, 7740065.4990693135, 7740285.893889714, 7740305.41573497, 7740306.51844279, 7740319.703416439, 7740325.923752385, 7740564.276376459, 7740591.498947448, 7740698.4375, 7740930.456017172, 7741012.5, 7741355.052434444, 7741491.293772692, 7741626.5625, 7741693.7986774165, 7741695.722824573, 7741720.109517186, 7741727.6152753765, 7741731.151940414, 7741880.796894258, 7741929.6597348945, 7742163.146338118, 7742247.213598802, 7742300.522766628, 7742460.219370037, 7742507.916848228, 7742603.557719938, 7742643.958119979, 7742735.120616707, 7743279.6875, 7743358.328727737, 7743364.816261444, 7743376.5625, 7743446.707719773, 7743626.5625, 7743707.515732575, 7743711.115505831, 7743725.0, 7743961.787308028, 7744084.1058961665, 7744132.204578128, 7744400.0, 7744435.581663093, 7744702.634607363, 7744717.116374316, 7744973.101970334, 7745095.3125, 7745787.5, 7745790.625, 7745796.674493689, 7745865.290920967, 7745896.875, 7745898.594483975, 7745976.495109984, 7746656.25, 7747010.774007913, 7747171.875, 7747434.375, 7747712.626652877, 7749327.897140892, 7749950.983281178, 7750154.334257666, 7750245.987162269, 7750921.875, 7752013.848218975, 7752681.25, 7753055.665573209, 7754955.881049164, 7763768.289485737, 7763785.652723131, 7766878.125, 7767795.3125, 7769063.043159874, 7774048.4375, 7774133.02613101, 7783723.932847542, 7784187.5, 7794198.4375, 7794208.537809884, 7796234.570510866, 7796247.8683507135, 7804288.09519928, 7806489.0625, 7807376.764814668, 7807648.772159415, 7807649.337109106, 7808046.850018954, 7808060.9375, 7808114.604523196, 7808180.439321598, 7808270.003795634, 7808281.146672049, 7808432.04554834, 7808506.243135003, 7808615.669756104, 7808641.993649562, 7808814.821895441, 7808846.875, 7808899.439784108, 7808979.6875, 7808998.4375, 7809053.749211285, 7809090.63527868, 7809145.266024223, 7809212.5, 7809295.3125, 7809353.998752288, 7809417.898608589, 7809548.353582394, 7809594.359114079, 7809619.578852042, 7809738.299996563, 7809778.66752101, 7810139.0625, 7810300.504863119, 7810367.802859811, 7810378.530853294, 7810390.625, 7810403.462781203, 7810454.6875, 7810545.278715628, 7810552.686313287, 7810696.875, 7810798.290443057, 7810887.506761511, 7810946.1692119455, 7811067.7704339195, 7811097.154813141, 7811231.978916325, 7811275.0, 7811303.20619062, 7811365.168874848, 7811479.6875, 7811514.0625, 7811589.0625, 7811700.0, 7811756.8995170025, 7811889.288811991, 7811959.223399283, 7812241.458804973, 7812314.669031551, 7812321.705829937, 7812479.603686243, 7812612.553470649, 7813005.510366369, 7813310.106583673, 7813504.541294643, 7813557.8125, 7813835.755365829, 7813857.778388743, 7814706.07011915, 7814761.331822113, 7814812.051335311, 7814812.646612498, 7815208.590101114, 7815270.436257308, 7815495.083369536, 7815524.682448586, 7815543.585855772, 7815568.990302821, 7816008.403043064, 7816062.167827655, 7816076.229443409, 7816097.5228665685, 7816274.864404238, 7816369.91660305, 7816426.950251415, 7816676.262207071, 7816812.5, 7817129.665335113, 7817285.650635306, 7818312.48721568, 7820160.9375, 7820267.630305958, 7820341.089797562, 7820538.0682246145, 7820888.503028506, 7821209.375, 7822798.948419852, 7822947.986119169, 7823752.453389358, 7824031.12565409, 7824193.75, 7824203.125, 7824204.97192047, 7824375.786322475, 7825151.5625, 7825764.3789016055, 7825781.836871294, 7825876.11091924, 7825888.635240314, 7826862.278022619, 7827318.75, 7827600.0, 7829031.9664927395, 7829177.190950932, 7829353.553635653, 7830048.4375, 7830496.875, 7832167.981923462, 7837932.762193612, 7838267.1875, 7838422.3084383095, 7838435.734787363, 7838439.0625, 7838645.3125, 7838815.3233126905, 7838827.545886703, 7838831.25, 7838848.47861527, 7838848.497850983, 7838998.4375, 7839009.048894065, 7839218.75, 7839223.4375, 7839335.9375, 7839463.950416495, 7839677.485382093, 7840569.979641934, 7840810.104059673, 7841184.163811039, 7841235.388974625, 7841482.377219153, 7841578.863943892, 7842163.380032137, 7842880.632582876, 7842982.8125, 7843332.8125, 7843485.9375, 7843533.623569788, 7845231.9150048625, 7845346.875, 7845663.829458855, 7846016.983637895, 7846089.692233593, 7846094.762347681, 7846838.581720178, 7847950.0, 7848611.814278382, 7849284.855575406, 7850677.875401967, 7850979.317228655, 7851298.139050775, 7851846.371112272, 7851955.734486403, 7852054.214450102, 7852331.25, 7852393.954450196, 7852592.22934894, 7852817.622239745, 7853246.786683205, 7853604.008677777, 7853897.518923154, 7854373.589465507, 7856572.969435769, 7867697.045995836, 7868337.5, 7868853.902797445, 7869226.5625, 7869335.73751958, 7869382.535093187, 7869645.9833385525, 7869685.059897554, 7869709.271667413, 7869921.025990998, 7870012.5, 7870052.5850470355, 7870225.0, 7870234.335982612, 7870257.1980226645, 7870451.131037036, 7870513.71891472, 7870557.213461884, 7871237.5, 7871250.663062518, 7871273.4375, 7871332.739641047, 7871369.926208996, 7871420.29823758, 7871436.83549694, 7871617.1875, 7871694.028984702, 7871711.648087696, 7871771.875, 7871907.8125, 7872075.0, 7872234.375, 7872305.648535307, 7872308.404322864, 7872436.725680729, 7872439.254059144, 7872503.663931639, 7872604.6875, 7872679.6875, 7872686.437507399, 7872841.849890109, 7872915.422214013, 7873033.637660527, 7873071.941184777, 7873100.40319039, 7873692.773463768, 7873776.802966662, 7874715.430266027, 7875188.806238559, 7875425.816451724, 7876123.4375, 7876212.369955242, 7876701.488198721, 7876719.65418923, 7876823.4375, 7877079.6875, 7877101.5625, 7877157.8125, 7877428.141036393, 7877593.75, 7877968.453196099, 7878114.811126146, 7878296.875, 7878337.578154667, 7878601.089957665, 7878993.75, 7879378.125, 7879544.4974985495, 7879645.306330544, 7880096.875, 7880120.3125, 7880588.480728795, 7880678.986168816, 7880918.3356153425, 7880940.1755915275, 7881743.169520763, 7882586.775515002, 7887120.660474444, 7887473.364342448, 7887578.877612631, 7887889.178957117, 7888060.9375, 7888232.162168737, 7888395.558244503, 7888515.1770821, 7888596.875, 7889461.3574692765, 7890022.292137638, 7890621.762327564, 7891216.504946394, 7891219.470710307, 7891379.888159447, 7891545.3125, 7891555.972593133, 7891575.0, 7891631.25, 7891962.4918598365, 7891971.842834317, 7892015.625, 7892182.221332238, 7892220.3125, 7892348.373415484, 7892349.3895975, 7892484.375, 7892538.811139145, 7892556.637341044, 7892653.125, 7892668.3355330415, 7892746.509579259, 7892839.0625, 7893078.0717780525, 7893335.818227902, 7893338.225307366, 7893413.773993498, 7893543.448157911, 7893666.937983692, 7893700.722048537, 7893726.08256144, 7893826.5625, 7893879.6875, 7893989.642787745, 7894052.5587398885, 7894060.159496088, 7894096.875, 7894139.890688435, 7894161.8890347425, 7894224.548579608, 7894493.75, 7894735.9375, 7894820.156452976, 7894860.330909014, 7894881.667807839, 7894893.021010167, 7894964.196256903, 7894979.0706606265, 7895020.3125, 7895179.6875, 7895216.631653244, 7895364.150982892, 7895385.7501652725, 7895462.9770708755, 7895467.5090054395, 7895471.789552848, 7895534.375, 7895615.625, 7895721.837282163, 7895724.808455393, 7895792.1875, 7895823.4375, 7895859.229993463, 7895884.153436659, 7895903.7847653, 7896180.961432705, 7896270.3125, 7896295.3125, 7896297.513941067, 7896316.106585634, 7896367.175170779, 7896613.265210386, 7896634.295547575, 7896641.389899594, 7896676.675192041, 7896731.486376367, 7896806.939521217, 7896946.0754665835, 7897294.244367256, 7897479.250170629, 7897566.5266305115, 7897584.269448345, 7898030.978937473, 7898475.0, 7899079.350415913, 7899160.9375, 7899299.86898875, 7899526.28007251, 7899724.711493654, 7899898.006726027, 7900529.640861047, 7900651.836941144, 7901329.6875, 7902310.23074962, 7902462.70784244, 7905109.611798606, 7908467.74743296, 7908784.375, 7911222.560402498, 7913553.125, 7917832.208588128, 7918566.917979732, 7919373.430521669, 7919726.65238831, 7919824.9170544455, 7919836.788837266, 7920869.220425789, 7921066.234871551, 7922117.48327483, 7922129.514657897, 7922576.058062217, 7922706.25, 7922872.368027223, 7923292.1875, 7923668.58494791, 7924723.4375, 7925778.125, 7926123.4375, 7926257.1126546385, 7926712.433680362, 7927124.152438993, 7927651.965799788, 7927726.495569536, 7928327.060161075, 7928585.9375, 7948884.375, 7952511.92027587, 7953121.740044325, 7953401.253674452, 7953637.5, 7953714.0625, 7953726.496091027, 7953736.102370084, 7953803.706738592, 7953860.255844802, 7953975.259249267, 7954231.25, 7954514.0625, 7954749.824669491, 7954937.5, 7954946.984054703, 7955040.091524315, 7955290.577158619, 7955360.9375, 7955636.744524382, 7955640.5714348955, 7955666.186650904, 7955672.321265458, 7955764.542588087, 7955779.046133072, 7955814.592416668, 7955819.61710806, 7955820.582875519, 7955976.5625, 7956168.359603942, 7956514.995307133, 7956706.795166367, 7956713.385544212, 7956796.27984991, 7956800.0, 7956856.234102692, 7956878.125, 7957131.961771839, 7957225.981777516, 7957538.085253342, 7957650.0, 7957743.204827694, 7957882.8125, 7958192.1875, 7958232.8125, 7958838.6932764435, 7959356.25, 7959651.5625, 7960521.136458494, 7961074.583431417, 7961775.182414208, 7961846.483234435, 7961925.0, 7965206.69653513, 7968521.424327911, 7970167.803986718, 7978679.532818725, 7979005.1763001215, 7979385.582163739, 7979667.485584832, 7980592.1875, 7981092.1875, 7982082.095489581, 7982235.074365372, 7982268.75, 7982394.417474319, 7982539.0625, 7983048.74713483, 7983196.875, 7983431.267873052, 7983470.3125, 7983496.355994188, 7983631.227890504, 7983671.9697414385, 7983694.670905531, 7983701.038703606, 7983707.8125, 7983735.277246933, 7983742.1875, 7983784.375, 7983845.047159594, 7983923.4375, 7983987.5, 7983989.025546969, 7984032.666965983, 7984033.396187892, 7984103.125, 7984128.497316375, 7984180.072253547, 7984191.933644646, 7984213.648736492, 7984246.429360614, 7984283.481429543, 7984321.756732369, 7984342.168227902, 7984400.0, 7984435.716244976, 7984451.694840101, 7984460.9375, 7984463.305931923, 7984464.183206503, 7984464.200654473, 7984507.054307415, 7984589.662693684, 7984616.5665335925, 7984861.279783727, 7985037.831968996, 7985048.4375, 7985140.625, 7985178.125, 7985253.809781503, 7985263.655897988, 7985276.5625, 7985385.9375, 7985472.347482164, 7985555.861760376, 7985560.9375, 7985565.28605852, 7985854.394347923, 7985873.4375, 7985893.75, 7986101.246275288, 7986473.4375, 7986484.866552072, 7986495.153631836, 7987554.4958018605, 7988418.75, 7988856.25, 7990303.982935611, 7990400.0, 7990793.228335291, 7992398.541930922, 7995025.0, 7995079.9132312825, 7995250.0, 7995386.185137467, 7996237.5, 7996476.089670017, 7996581.284836047, 7996639.83810726, 7996756.531938978, 7996818.614939691, 7997066.4250360355, 7997161.480961036, 7997269.830892225, 7997439.6388288485, 7997570.34396494, 7998321.02819608, 7999796.261677841, 8002156.733887889, 8002162.5, 8002334.265270857, 8008868.42533855, 8009990.625, 8010863.89732032, 8011616.143499424, 8012351.793720111, ...], [64.45294417771487, 16.366344018853965, 13.57740192405644, 8.015310913868918, 10.149259729757194, 60.34043176229244, 100.18142690499052, 56.859980419136, 67.66768203030286, 5.147064924231568, 30.005625381578586, 42.783220940871644, 77.34133312219416, 43.23114161012228, 7.62567579600956, 14.866949630670982, 93.16934543152523, 36.28373762090489, 10.676049144459395, 8.026761247503611, 17.546830668227802, 8.189191783546688, 32.3057979843901, 16.526627720283113, 65.79450969692755, 36.152544173761825, 13.49391088317637, 17.83294338546385, 19.067384710827824, 88.86986999485732, 12.003588256874016, 18.354751447099375, 31.65035724615562, 22.667552335991243, 15.009169757603285, 28.5360070051947, 25.593796326727837, 26.796203216942573, 118.28640731338687, 18.034522648130714, 15.488140340219418, 29.95526786553798, 5.773560402190746, 65.64317681981062, 62.807932153944236, 81.0946008593823, 6.417375125445975, 17.81156264117276, 21.090394835616564, 18.587432524783946, 5.679149569871321, 17.21236332868938, 11.11164791620982, 9.450347242975473, 142.96455139877753, 7.853639850160952, 9.536370793771084, 41.913683201963956, 24.852297594956706, 9.724364208622246, 37.89769075063587, 72.83891355019912, 14.47389589012744, 28.645345799817, 100.23980493535703, 84.00796360976427, 82.21850100656495, 45.28111492566955, 65.45400357141904, 60.63645166558745, 62.45889438175942, 6.897600867053551, 9.892155668936551, 178.88709370022974, 10.864145724739059, 14.962877595066605, 117.01976587067165, 77.08019752929704, 13.955445416532616, 25.95741117820064, 22.222372035592986, 9.043062143526823, 17.656362596925085, 15.98254230627295, 7.281199879061287, 7.674136727321052, 24.497559163052202, 67.32945140227324, 6.103532859459954, 15.585865528170235, 54.15239617460276, 28.438318416751496, 87.0589967723111, 8.92385970209972, 46.079265454277625, 27.892820859890445, 13.362842160148501, 75.79128250651723, 11.663947177383825, 27.998255820483962, 43.3161039323702, 6.046231662297023, 103.24749074430954, 19.05096159164049, 12.210177170335147, 11.458168459213391, 50.268749779667914, 61.915520143536234, 29.83948663341889, 48.40618394132881, 58.88369206933561, 30.235932777879842, 76.65821604481124, 33.53734112524235, 12.437258045928273, 58.9109354411616, 5.618824484803256, 85.50707874378597, 77.53078014168416, 11.329397871286249, 67.4764811651786, 34.328023933366175, 73.45859546493563, 12.768618071144767, 73.18499511409716, 9.542883830990068, 47.634374830358944, 101.93747889266518, 12.2371979337573, 49.80093508605367, 49.995194258933594, 45.03167903414107, 42.4123134395152, 22.203245223465633, 75.25594188841251, 91.14921692072312, 13.474754841535987, 10.936864853820653, 30.00679599034676, 75.60779935463856, 52.7942644311837, 31.88009231283972, 22.067771219419814, 47.69005946690636, 52.80856271586919, 27.678018553261502, 45.18304779570549, 16.321731378865458, 42.89129445129922, 39.3728944662211, 10.046536395716487, 94.56917032908764, 6.748667716085153, 32.91591129368077, 209.26713014657798, 12.312463384396418, 100.20271529902641, 29.877742666867476, 8.810571021177743, 25.345738585383334, 15.096540639376018, 80.93575014203765, 14.647974639143564, 31.35666879405643, 135.12273378038034, 10.52317976899024, 43.62982375217089, 95.334049390955, 107.41290679461797, 52.9933750054746, 13.207795069249977, 88.33278833388515, 5.471774848726132, 44.055847428779614, 134.06764798885808, 6.323828185443724, 57.19683438020499, 24.311216884264198, 46.03177048160715, 41.20213209547931, 50.865780967230315, 36.164984863322374, 88.74760712104083, 49.72585972785135, 9.129054111265726, 60.080364254618814, 27.470057947017366, 52.04489236297866, 67.81374682968662, 38.185502206717445, 90.20169606746562, 61.70976045089125, 10.290736972749176, 22.298345230779894, 48.6074474558407, 105.65424276105841, 57.27213938286107, 5.354149017815928, 67.81040634508473, 5.938285229782736, 78.49198633987753, 20.807814739875106, 42.553557903905535, 8.581675981058346, 5.984322530308423, 50.754815015718634, 45.927105999258515, 15.770381719168315, 57.07275658007026, 5.68797668189689, 30.990927861601524, 60.13535599852288, 46.41820676729239, 96.45265535328457, 79.06237734320405, 6.043536442002616, 13.058773311301675, 70.57159395518872, 9.579174402092754, 62.94299671427369, 25.32280954774309, 25.659002579710517, 54.46825060338185, 6.271338383191313, 10.741400776171112, 56.37775699616079, 32.6130685380688, 64.01456449839864, 37.64429873838822, 80.63791005163301, 104.34334614871133, 25.85238645094131, 88.13629923549406, 10.093863945394784, 14.267743788312794, 40.487583951691484, 94.02317433940553, 43.39904068352172, 69.23749484161323, 6.583537911172086, 90.35478419717342, 47.003670399684054, 8.44339506263945, 31.429357313550057, 5.829890820455717, 60.56468015855316, 6.168919176690531, 72.66136756177092, 49.8972232620959, 55.162807119631864, 14.751797654901697, 57.683827701880034, 53.0689220158599, 41.861564076858954, 60.514903759819546, 5.591247232213301, 69.90489262180368, 26.9726492818481, 51.41902596229732, 8.986293900067626, 11.195426226306843, 6.7089276199311305, 73.30975614948247, 29.596983423499474, 6.832492794883686, 96.21852123653622, 92.86929801717585, 6.071137033819617, 20.126870566176912, 16.33103990170245, 11.890385369989833, 5.723443973098663, 78.85288804417819, 57.03268191133188, 17.403369670971262, 13.494674733515986, 49.400860622871576, 25.523524009675214, 33.649966759115415, 45.326021035054765, 59.543589973509754, 42.428764164285724, 5.769086860174644, 22.782507612977412, 5.342465213069815, 14.642510163072398, 7.251977388785608, 23.15390676449505, 23.819233620909493, 10.994285349735177, 68.19615033405094, 20.492448455762602, 101.3926741541161, 47.47810746740462, 7.307983171077915, 47.26305519705686, 13.097344490090343, 16.253989930569382, 38.70409414332573, 82.43281625672293, 48.27963691765407, 13.623032975332201, 8.961444774741768, 60.65554583035011, 9.29429118499824, 14.30994018609718, 57.59935965594606, 61.72417969897681, 14.064592655953732, 8.668073111192856, 74.19604288847883, 26.1963823546759, 83.88879791358917, 8.607913292115152, 24.726845161261835, 7.916739685572791, 18.6746680873049, 83.25059447320868, 20.142170716450238, 7.324471656019244, 7.582441420215448, 98.23257910606506, 11.12036732666249, 55.42408667816594, 77.62760576546037, 34.89781660264527, 12.20966898557623, 66.56955350573993, 50.92277703559719, 5.753519097183379, 48.080260882560594, 10.861583449477472, 9.131238220910971, 8.037724195935239, 17.202749833483942, 43.38030143680518, 8.522801246402553, 42.07442283772506, 9.810578803448486, 18.53622245403767, 36.025302024873156, 5.25837143387864, 84.61571850436556, 49.83115235135378, 9.562388951933938, 8.078014055834037, 41.139170251337156, 8.721348142801416, 29.47084000686148, 26.018761181935503, 5.474549529250609, 5.9495883113339, 11.605238819819947, 15.108966203025728, 5.0815981276115485, 20.195892667547866, 117.01544141218703, 18.981037254254776, 26.80707549694898, 62.317438650116905, 7.637371101621998, 81.83033336463743, 20.156554258430177, 36.0110861746314, 39.7515844464403, 46.7761445542542, 91.78999968196003, 5.171280785069933, 46.553120152261016, 13.403031957550855, 82.2107162904102, 11.999158338573581, 26.751374091152073, 35.43146006626347, 25.660941238075715, 41.26663043675154, 126.95865021981905, 27.53713790300809, 51.8640677573622, 50.8110280640965, 63.44649390328825, 28.03038214741987, 11.479317474433644, 36.43366541880477, 65.54759723176015, 18.988569607292686, 33.988176420367026, 7.220803953271465, 41.73029764052253, 48.45941611236963, 15.130348656814002, 5.844977683103379, 25.074500157507167, 30.613197856193466, 54.47131373963052, 21.974007900537348, 9.308036038152002, 70.71443534286877, 8.474135780537573, 40.747677339637555, 17.613694444017185, 6.099018152882145, 9.726212367253801, 6.8057797744572115, 10.052934271336587, 31.899708081592642, 21.489815023980995, 33.80816848872804, 99.94877433167835, 25.60825575913922, 62.322359922831936, 23.792121333763543, 8.383007700529177, 41.18180019672197, 14.612245225430641, 54.593645626845934, 8.865333619817491, 44.08830435102146, 13.739012407921011, 94.29224721345278, 44.0291924118784, 27.108233631531114, 47.16925608139471, 52.956579862709454, 28.705120984829637, 20.96237114312968, 43.01414671742364, 35.149729427047454, 67.79707114884415, 32.51120529512116, 43.774877126120884, 14.35293846896726, 53.874468922978025, 50.917595289586835, 28.519255839765414, 6.238832940564187, 103.69602327935121, 23.093662483178363, 6.9061113728521475, 55.57752430853968, 14.183172729670172, 30.992466175900223, 13.100619181899312, 22.908212400340776, 19.05069437753865, 65.94512702670443, 32.76173492201828, 49.96411304397223, 6.877015503688878, 91.95185931854891, 6.294571752888292, 5.177060713769514, 80.80324529929165, 66.07909275724784, 5.493783316303545, 16.586352414781114, 19.280319032862256, 7.28722421464187, 73.95910844588407, 52.02838967003785, 28.055720833110975, 22.22542131639398, 80.51347227790973, 62.592133981638995, 7.811793422787866, 18.8680969772644, 10.677191228595348, 26.636351790992006, 5.2241752117193565, 31.26279217373083, 5.9433126566749825, 64.93101944981859, 50.24431295787778, 53.1005016839183, 7.412450370420923, 52.90683496410045, 35.197847320480435, 5.8616568170385275, 87.62697681313217, 22.866412685942368, 42.5290402786345, 105.72820193765452, 12.837219624295548, 8.702188251693894, 5.39527560274844, 24.917711386218393, 63.37458018232178, 19.221240036996367, 80.64594364491585, 45.539128516627486, 92.23948628010419, 12.248255657973472, 11.827443706961152, 58.2246701515718, 88.92555036368991, 32.96577164001455, 11.075307100119375, 22.12734359423068, 95.72050142640369, 7.083324071314456, 76.43336155987964, 8.7983110678621, 17.75225787163132, 16.127273774386992, 13.214447623787485, 58.857908955869156, 60.493820468726796, 29.87079144191548, 133.7244781902838, 77.23073346508515, 78.37273502866984, 54.340024148184106, 6.352902672650254, 19.55215257790285, 25.85144735675041, 19.479497197715293, 15.637510775139322, 58.073920877968035, 14.631392307431419, 8.315057362994468, 10.139786607662485, 18.72469326711923, 82.31567534698407, 73.96472134958414, 131.19096216731091, 23.876552463530185, 75.50363579763206, 16.69265501507026, 23.00924030518563, 5.346970782421903, 29.62756911155155, 11.326818837890277, 32.99542915139557, 155.33533958967993, 79.75849154984084, 15.94401341296329, 17.79883220992977, 31.517368541146833, 7.487060666229086, 18.160373589906015, 26.105489289558545, 29.703157136421193, 5.355386422339254, 23.747000619411185, 49.856749480263616, 93.78323417644727, 7.502677373576164, 19.12392035454101, 87.75450077586137, 94.12252016231089, 9.757979090962186, 44.031858274344124, 20.919668967910802, 103.52785228754983, 12.032730213313314, 29.152061431368775, 27.92265590509748, 26.28767538132132, 142.99764172987193, 31.07539069803352, 6.821649146747405, 82.33606580907447, 87.87872557983323, 5.837768172009185, 44.41764640476454, 21.990099846986638, 13.529779535666366, 14.157947894767675, 87.19916034995644, 81.27587220267694, 7.884708527646026, 7.8475352895181, 16.872788227011128, 43.523113886498535, 28.718361984977566, 8.756676923568111, 70.505516476404, 44.961065983595475, 36.26930783928991, 14.221332859606889, 38.44132414722212, 41.44908187161642, 25.12342191562649, 8.885448140247757, 78.8852266496609, 5.292358971153323, 15.176639166418923, 44.17395484324007, 53.95380652304222, 40.065486969951486, 75.32609762088912, 47.00940984598555, 69.66672115734013, 62.52007156216717, 49.64198297658185, 30.17303784307427, 6.454487381682119, 33.38701443094299, 13.506861724453652, 5.570051794666164, 8.814100975556949, 60.12395541989959, 93.60617415447979, 71.75465613436387, 54.23431361342554, 10.126353289617592, 22.278422943834883, 77.43307394260326, 24.645465668050992, 25.061692476209608, 5.489460546347799, 7.415680858959144, 8.955472324273078, 110.97192456564518, 10.20198062571193, 25.07105541641341, 7.057350056082677, 67.90014040016483, 30.001073771308935, 49.497790398354894, 67.27466352455203, 35.43008522071692, 49.854541170313816, 28.9054221904292, 29.43270211747872, 74.96311841952938, 26.89223712112973, 193.91351179575133, 60.35504883474437, 11.373847625470725, 28.622893223420967, 18.28148668077963, 88.8481521171651, 6.929401304228567, 56.1208861767479, 111.92613352919022, 33.4919210070775, 9.971301502580449, 39.64315994401881, 26.636273678733218, 6.004046164162978, 35.87976098872337, 21.103596321253473, 47.75095312992921, 27.77554214366291, 13.023085706327144, 22.205169612928348, 6.696797722924185, 80.67072085390419, 48.506658654620196, 11.735601598458388, 73.71951554692065, 27.16194732468447, 22.707711523699036, 8.279049492703091, 43.331136127354405, 61.34925921066558, 87.69101071904949, 5.1127033202021765, 46.815839898858286, 67.4143965414987, 186.77688298809102, 49.88442878658022, 10.301896321924254, 12.198637069470768, 61.25811951049792, 13.375571500214736, 29.964162824387245, 34.29360609104895, 59.538003824983164, 7.259398562842443, 23.281928333332818, 80.43933543771686, 19.412614627874785, 11.232758091778804, 8.511956065685611, 17.770764416148847, 9.543359221046071, 56.10375999082774, 10.74946257522158, 44.549325759511056, 57.08417492155597, 7.556870293441548, 6.7487630017100475, 6.958525185517507, 87.07948051679838, 46.28389840817937, 52.684783072439785, 96.14784574953171, 15.002986969136053, 46.891316174391285, 7.499304036228155, 33.81898550646301, 67.11524641380991, 75.10172426736793, 13.401880482210816, 44.84837326177766, 31.92616666278433, 18.83722475331793, 14.91804637163757, 91.95258465418742, 29.533827077877916, 23.4021494841691, 10.18383642293343, 131.26173889714593, 58.35350995808607, 89.55429489800485, 8.78573173009552, 11.718966250345325, 8.248265602800057, 54.53634746123573, 15.404779684014429, 85.1379589433371, 24.84974450792748, 8.42095178192425, 43.37940124787158, 30.191668439144593, 88.99976486463078, 7.761414230991797, 38.76795798909882, 32.65274729375646, 10.025483364276804, 18.89864271497094, 53.25568968190682, 24.04369238274194, 78.49077210513173, 53.29926446523464, 75.04295308134218, 71.89105438076108, 127.77151444634157, 31.303620017374254, 81.40071712876139, 27.317934109283904, 20.4582081844689, 35.23868036666745, 24.392579434959565, 16.656638891750617, 64.61645607000575, 32.62956331821758, 24.8108225697584, 71.48299608365721, 27.900312066287892, 14.505586716410585, 18.68079327638732, 23.89867384607764, 142.91944986672044, 21.727975589486142, 18.658104697821873, 88.15733576345036, 71.17209712679134, 93.17877627087367, 44.58042355641029, 31.71988621128598, 17.89130383243612, 50.004590009177576, 19.43597439356271, 108.88634227826998, 5.90103413427224, 113.10559970622805, 106.77211662717991, 82.33944814367214, 69.75005075555625, 16.056570271882368, 12.739795589942105, 41.22166515819778, 10.283411215872155, 58.921154822908804, 56.618113739543126, 39.80618485122096, 11.268886355656297, 25.305105966598976, 5.850143347916868, 16.327035870368437, 26.941824123977877, 57.32689713792883, 28.67076662312129, 14.799669469164074, 25.24256220150113, 85.32203004378871, 103.58833570401364, 14.416189968103138, 24.807181147515234, 12.343593454005106, 64.73180536284546, 72.22279147963168, 60.85572193766306, 12.298599705598564, 76.39932970089573, 23.55843511328581, 12.57945916209546, 27.046118811224574, 38.53094343866066, 11.308541984560032, 124.20119201233568, 12.408775009941497, 24.593431365600768, 93.7911379942226, 48.14473019362698, 6.638371393356991, 26.59893867542163, 52.0555298023727, 86.66209553442602, 126.29034193418894, 66.66134027077211, 81.97656706370609, 23.97783169759247, 37.43844870756993, 55.0202206393507, 84.32170283654293, 11.585598339156062, 102.99456183798983, 21.401240945595234, 8.399633564608123, 6.2975870300035455, 17.613411792059154, 53.33468594419636, 23.20093134804592, 54.67453025430968, 8.868122790712034, 14.004946274987756, 28.387649210977056, 92.35598586951575, 17.99562306609789, 5.4320486784118165, 17.09939228956918, 17.91860565879054, 26.936867719567246, 46.19035071424659, 21.448944918017826, 65.585026689516, 21.35919104286431, 85.50157441729279, 58.733878596084224, 52.72187618368386, 186.42204167095636, 61.88758212871423, 19.70706822115672, 60.21594962674516, 218.71508547573364, 16.739282540540167, 27.26710743146426, 7.258719331038483, 93.93083162342491, 74.99452056035389, 8.8850197949247, 126.1397252419037, 13.882008570910498, 95.46772930428837, 31.008696854367972, 83.01077258583547, 85.9406241525565, 32.94728803599127, 12.854624853342008, 9.560674797257155, 69.95317615532637, 132.70599660572893, 35.03730878331739, 53.77785324143664, 102.39562468385401, 21.165538084418362, 7.586025439335141, 36.96057039046936, 34.54688147380849, 27.507775364252378, 5.743460310089619, 16.967395934004752, 71.12732846383378, 30.567561097592403, 97.09226315663439, 13.976121033504826, 11.57836491881218, 35.572077104877394, 22.6608777572792, 16.354348824352655, 9.839237964465207, 19.892550009009426, 17.82433617778441, 124.95291220061544, 28.214063968264036, 80.19094826066643, 18.587024114962762, 15.619600077392402, 60.49444628675784, 31.199369921982733, 5.893294315505055, 58.362484190777735, 79.27782320121554, 132.25283213668195, 8.100522135184997, 83.84783639052529, 104.57275803016411, 7.931163720288435, 6.215964473097916, 15.685567778330238, 5.0908228155281625, 107.85231556139107, 24.802839993342534, 48.553247063049454, 110.45783002719662, 29.585264038095634, 6.330995248065393, 23.068728525561802, 16.213994374134973, 63.68555730078951, 37.12283951594171, 59.044917335643504, 57.286042717569835, 44.20181661909919, 18.288538846432925, 78.16568184430143, 11.648822925904787, 31.979812338767665, 40.93508399345503, 40.35766091542634, 116.01797297441537, 11.093323204000846, 12.215296575535763, 8.84204728287769, 71.40532019635225, 75.98434713517247, 6.6384820999764775, 80.94122069590088, 36.481814044340574, 5.79460478862732, 93.29538007452629, 101.00552195420153, 11.070433942973434, 5.455554536032859, 9.879055910044451, 107.2062604776038, 61.4204424255724, 11.787530953611414, 49.822112996417104, 43.25986772278593, 22.053075611661175, 7.864529075765544, 7.0907059008562445, 118.12222361167322, 30.957519057316635, 24.811560673729243, 88.99696720634874, 115.98440529193282, 10.120521984204748, 15.422450489127527, 47.67096151726368, 71.804128351884, 5.746051190306376, 7.983402637004, 22.938413204491376, 40.71625870506979, 49.516524885685314, 45.11561118562062, 60.79623920645071, 7.871228975915573, 31.04109551018663, 35.87289579824442, 56.27997544688897, 98.28719929858546, 22.685450280875184, 34.34117387050034, 6.697674885592023, 23.83861028528529, 32.45490648286494, 56.05096414812159, 23.545682450324385, 58.457380664103724, 11.994046450418118, 5.525419527867129, 9.174406227078466, 89.0272058865306, 69.86163395746651, 33.8844771983423, 96.5544845100699, 28.022405104823907, 15.35507346581548, 43.312783752985, 51.37209516505879, 215.3662754914812, 23.035092937525572, 60.49587036368052, 62.8301170987707, 5.2461213292465505, 58.76811956530133, 9.581746519908775, 91.34759913645803, 117.78484358421939, 78.8595221860416, 41.74068696054239, 17.71208979528172, 28.884337802916313, 43.76531494945585, 53.92740981411272, 9.777062755249558, 38.51086376429923, 12.079292100795147, 7.489887458201797, 67.45355276990826, 5.240545651576241, 7.802190888052731, 14.127525113360948, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4877478.125, 5011251.892046396, 5011701.151780769, 5013324.449207502, 5033018.018652489, 5035759.961668363, 5038653.810210283, 5163804.022283464, 5165888.238239414, 5170221.071645472, 5171175.0, 5171564.0625, 5172626.5625, 5172903.125, 5174623.4991148785, 5175446.855299862, 5261017.841588938, 5295384.375, 5378135.627957297, 5379171.349093651, 5379175.292605078, 5379177.936187685, 5379303.125, 5379309.3356788615, 5379395.3125, 5379895.3125, 5379935.497668644, 5380064.658582707, 5380366.404291916, 5407456.25, 5411664.558847521, 5412711.614963598, 5413181.979957019, 5413377.432861808, 5413854.705138946, 5414031.25, 5414156.081776218, 5414204.593589606, 5414588.718111803, 5414602.426956528, 5414657.948885188, 5414695.3125, 5415060.375858728, 5415081.613004492, 5415495.176912001, 5415639.0625, 5415799.540365767, 5415928.717613762, 5416194.771160359, 5417571.024331179, 5417585.494776704, 5418127.0532103665, 5418131.2397016715, 5424690.762397793, 5428417.977395061, 5463945.955536802, 5467067.420350723, 5468988.345409001, 5469970.09410653, 5469975.4308420485, 5471791.502533219, 5479362.15241849, 5483987.371657065, 5487028.603551922, 5487031.25, 5487906.952151615, 5487914.87861663, 5488129.6875, 5488295.235763613, 5489315.625, 5489850.0, 5490142.82400713, 5490299.033740429, 5490716.59578682, 5492326.387073781, 5494706.465555722, 5495093.384691714, 5495891.996740686, 5500390.33977429, 5500548.292620856, 5500744.882625268, 5514621.513101748, 5515511.504599328, 5515994.117923013, 5516000.574742534, 5517167.379361529, 5517222.773503052, 5517417.1875, 5517565.772116791, 5517792.346871159, 5518199.847229325, 5518231.245600878, 5518268.279534255, 5519124.475198952, 5519781.25, 5522076.529750192, 5522374.513380532, 5523016.4692087555, 5523065.94296366, 5524741.343062824, 5526249.974206307, 5526532.400035021, 5528642.1875, 5528675.444050476, 5529692.78482347, 5540948.639108943, 5543328.125, 5544139.0625, 5544727.388476198, 5561295.3125, 5571234.375, 5596901.5625, 6803120.3125, 6863207.779507087, 6870005.3898736155, 6905958.275317338, 6925293.836086755, 6925543.639872434, 6925685.9375, 6926078.250314064, 6926228.125, 6926615.625, 6926775.321649776, 6927580.533012483, 6928110.227451739, 6930729.927449233, 6930737.741938835, 6935351.048898712, 6936445.922640097, 6937131.019405516, 6942158.584843513, 6978610.9375, 6984703.125, 7014719.880859175, 7104143.75, 7113282.691159437, 7132518.6046421155, 7132518.624375082, 7132524.364316918, 7133075.0, 7133648.4375, 7134163.933415832, 7134168.30574098, 7134271.875, 7135074.84997177, 7135337.455722819, 7136282.388154726, 7138287.820416302, 7142090.5999144735, 7142448.4375, 7169766.364833272, 7254082.863835789, 7254453.050215568, 7255021.875, 7255206.25, 7255249.082882567, 7255860.502194555, 7255960.9375, 7256438.374833016, 7256623.252886861, 7256645.352588227, 7256873.4375, 7256881.170795441, 7257044.967311155, 7257418.0291540725, 7257444.887951361, 7257574.890353122, 7257807.327776896, 7259088.329769418, 7280320.3125, 7280335.3164808275, 7411687.044105654, 7411823.668623725, 7434380.252496549, 7438216.762070216, 7439422.310452057, 7441937.5, 7442575.121325681, 7457435.800373329, 7457782.8125, 7458720.3071998395, 7459026.540301555, 7459057.073593034, 7459229.642258611, 7459532.563087505, 7459746.875, 7459769.713278257, 7460842.548864368, 7461772.662446122, 7484479.6875, 7485057.634269938, 7485488.0163373845, 7485499.389265123, 7485509.119480141, 7485980.7306808075, 7486254.6875, 7486346.875, 7486473.790045312, 7487546.913077492, 7488635.924626759, 7489082.8125, 7490355.678445285, 7499317.360266728, 7510728.644245667, 7514778.62671918, 7514891.2637555525, 7517245.3125, 7517250.201699961, 7532712.716655319, 7539990.325793407, 7540452.818334423, 7541803.125, 7541857.678299986, 7542148.620728704, 7542157.8125, 7542566.747789511, 7542775.96192088, 7543185.51321533, 7543244.029179133, 7543404.372377224, 7543550.313536981, 7544495.334332384, 7544541.915508789, 7544657.845198014, 7544727.862947247, 7545582.8125, 7548135.402980972, 7590051.5625, 7590388.806830485, 7591547.913520871, 7597587.5, 7599294.293337671, 7599575.0, 7599766.407311432, 7599910.748737201, 7599921.875, 7599943.75, 7600590.625, 7603231.25, 7606011.526349086, 7606469.702463855, 7606580.080126829, 7612206.535221665, 7613873.4375, 7617018.962741587, 7626985.9375, 7630102.305405005, 7631421.548386872, 7632081.194602096, 7632246.772253109, 7635674.554925795, 7637654.705292134, 7638270.3125, 7642228.15220651, 7647087.5, 7652508.955440192, 7668218.75, 7669059.29133039, 7669245.3125, 7669752.686563576, 7670595.355397038, 7670729.407827208, 7670734.375, 7670974.350945892, 7670989.398499147, 7671044.376690188, 7671057.8125, 7671162.335293398, 7671289.976192015, 7671336.134234107, 7671343.440011083, 7671401.821528105, 7671488.592862354, 7671699.943484909, 7671742.71170878, 7671866.747937394, 7672068.407640469, 7672196.104203735, 7672239.317807729, 7672723.4375, 7672939.0625, 7673267.1875, 7673335.311750272, 7673358.048729657, 7674460.953353376, 7675020.231778183, 7675484.849312561, 7675498.0892940145, 7676513.7678431375, 7676528.037930543, 7676725.0, 7676806.123313076, 7677797.927902679, 7678009.375, 7679286.602554818, 7679403.125, 7679479.101814756, 7679825.306422139, 7679964.796354116, 7680143.157572528, 7680167.647179101, 7680207.417470434, 7680263.589969353, 7680309.596539398, 7680465.580780849, 7680572.211163606, 7680762.5, 7681210.171178487, 7681274.749191783, 7681395.970378493, 7681523.4375, 7681557.682540256, 7681782.8125, 7681795.874438991, 7681851.335257545, 7681892.978389594, 7681956.974428603, 7681958.760243882, 7682574.353000922, 7682658.532348242, 7682693.692133027, 7682695.000476298, 7682937.4952993505, 7683012.5, 7683156.25, 7683620.3125, 7684317.784581583, 7687403.191827174, 7687831.25, 7691074.148000158, 7691685.9375, 7691745.135298776, 7691773.19089199, 7692072.935276235, 7693114.551498076, 7693184.375, 7694847.296497082, 7695703.991791202, 7697138.017093483, 7701752.266863987, 7702373.211781701, 7703825.46578656, 7705731.25, 7711823.4375, 7711853.38610188, 7715066.77111973, 7715715.625, 7715921.05314069, 7716125.0, 7716353.14344503, 7717192.481980275, 7717262.616189834, 7717370.597939484, 7717389.105751304, 7717433.499090651, 7719688.662672723, 7719906.007501439, 7720842.954981359, 7720948.3442252735, 7723827.922571416, 7724046.968398012, 7724468.75, 7735322.79219827, 7735854.461410976, 7735996.875, 7736160.217126019, 7736198.4375, 7736214.314857238, 7737369.930395307, 7739004.215371043, 7739029.6875, 7739239.556622651, 7739303.323150887, 7739668.460106725, 7739671.711146957, 7739737.489336659, 7740065.4990693135, 7740285.893889714, 7740305.41573497, 7740306.51844279, 7740319.703416439, 7740325.923752385, 7740564.276376459, 7740591.498947448, 7740698.4375, 7740930.456017172, 7741012.5, 7741355.052434444, 7741491.293772692, 7741626.5625, 7741693.7986774165, 7741695.722824573, 7741720.109517186, 7741727.6152753765, 7741731.151940414, 7741880.796894258, 7741929.6597348945, 7742163.146338118, 7742247.213598802, 7742300.522766628, 7742460.219370037, 7742507.916848228, 7742603.557719938, 7742643.958119979, 7742735.120616707, 7743279.6875, 7743358.328727737, 7743364.816261444, 7743376.5625, 7743446.707719773, 7743626.5625, 7743707.515732575, 7743711.115505831, 7743725.0, 7743961.787308028, 7744084.1058961665, 7744132.204578128, 7744400.0, 7744435.581663093, 7744702.634607363, 7744717.116374316, 7744973.101970334, 7745095.3125, 7745787.5, 7745790.625, 7745796.674493689, 7745865.290920967, 7745896.875, 7745898.594483975, 7745976.495109984, 7746656.25, 7747010.774007913, 7747171.875, 7747434.375, 7747712.626652877, 7749327.897140892, 7749950.983281178, 7750154.334257666, 7750245.987162269, 7750921.875, 7752013.848218975, 7752681.25, 7753055.665573209, 7754955.881049164, 7763768.289485737, 7763785.652723131, 7766878.125, 7767795.3125, 7769063.043159874, 7774048.4375, 7774133.02613101, 7783723.932847542, 7784187.5, 7794198.4375, 7794208.537809884, 7796234.570510866, 7796247.8683507135, 7804288.09519928, 7806489.0625, 7807376.764814668, 7807648.772159415, 7807649.337109106, 7808046.850018954, 7808060.9375, 7808114.604523196, 7808180.439321598, 7808270.003795634, 7808281.146672049, 7808432.04554834, 7808506.243135003, 7808615.669756104, 7808641.993649562, 7808814.821895441, 7808846.875, 7808899.439784108, 7808979.6875, 7808998.4375, 7809053.749211285, 7809090.63527868, 7809145.266024223, 7809212.5, 7809295.3125, 7809353.998752288, 7809417.898608589, 7809548.353582394, 7809594.359114079, 7809619.578852042, 7809738.299996563, 7809778.66752101, 7810139.0625, 7810300.504863119, 7810367.802859811, 7810378.530853294, 7810390.625, 7810403.462781203, 7810454.6875, 7810545.278715628, 7810552.686313287, 7810696.875, 7810798.290443057, 7810887.506761511, 7810946.1692119455, 7811067.7704339195, 7811097.154813141, 7811231.978916325, 7811275.0, 7811303.20619062, 7811365.168874848, 7811479.6875, 7811514.0625, 7811589.0625, 7811700.0, 7811756.8995170025, 7811889.288811991, 7811959.223399283, 7812241.458804973, 7812314.669031551, 7812321.705829937, 7812479.603686243, 7812612.553470649, 7813005.510366369, 7813310.106583673, 7813504.541294643, 7813557.8125, 7813835.755365829, 7813857.778388743, 7814706.07011915, 7814761.331822113, 7814812.051335311, 7814812.646612498, 7815208.590101114, 7815270.436257308, 7815495.083369536, 7815524.682448586, 7815543.585855772, 7815568.990302821, 7816008.403043064, 7816062.167827655, 7816076.229443409, 7816097.5228665685, 7816274.864404238, 7816369.91660305, 7816426.950251415, 7816676.262207071, 7816812.5, 7817129.665335113, 7817285.650635306, 7818312.48721568, 7820160.9375, 7820267.630305958, 7820341.089797562, 7820538.0682246145, 7820888.503028506, 7821209.375, 7822798.948419852, 7822947.986119169, 7823752.453389358, 7824031.12565409, 7824193.75, 7824203.125, 7824204.97192047, 7824375.786322475, 7825151.5625, 7825764.3789016055, 7825781.836871294, 7825876.11091924, 7825888.635240314, 7826862.278022619, 7827318.75, 7827600.0, 7829031.9664927395, 7829177.190950932, 7829353.553635653, 7830048.4375, 7830496.875, 7832167.981923462, 7837932.762193612, 7838267.1875, 7838422.3084383095, 7838435.734787363, 7838439.0625, 7838645.3125, 7838815.3233126905, 7838827.545886703, 7838831.25, 7838848.47861527, 7838848.497850983, 7838998.4375, 7839009.048894065, 7839218.75, 7839223.4375, 7839335.9375, 7839463.950416495, 7839677.485382093, 7840569.979641934, 7840810.104059673, 7841184.163811039, 7841235.388974625, 7841482.377219153, 7841578.863943892, 7842163.380032137, 7842880.632582876, 7842982.8125, 7843332.8125, 7843485.9375, 7843533.623569788, 7845231.9150048625, 7845346.875, 7845663.829458855, 7846016.983637895, 7846089.692233593, 7846094.762347681, 7846838.581720178, 7847950.0, 7848611.814278382, 7849284.855575406, 7850677.875401967, 7850979.317228655, 7851298.139050775, 7851846.371112272, 7851955.734486403, 7852054.214450102, 7852331.25, 7852393.954450196, 7852592.22934894, 7852817.622239745, 7853246.786683205, 7853604.008677777, 7853897.518923154, 7854373.589465507, 7856572.969435769, 7867697.045995836, 7868337.5, 7868853.902797445, 7869226.5625, 7869335.73751958, 7869382.535093187, 7869645.9833385525, 7869685.059897554, 7869709.271667413, 7869921.025990998, 7870012.5, 7870052.5850470355, 7870225.0, 7870234.335982612, 7870257.1980226645, 7870451.131037036, 7870513.71891472, 7870557.213461884, 7871237.5, 7871250.663062518, 7871273.4375, 7871332.739641047, 7871369.926208996, 7871420.29823758, 7871436.83549694, 7871617.1875, 7871694.028984702, 7871711.648087696, 7871771.875, 7871907.8125, 7872075.0, 7872234.375, 7872305.648535307, 7872308.404322864, 7872436.725680729, 7872439.254059144, 7872503.663931639, 7872604.6875, 7872679.6875, 7872686.437507399, 7872841.849890109, 7872915.422214013, 7873033.637660527, 7873071.941184777, 7873100.40319039, 7873692.773463768, 7873776.802966662, 7874715.430266027, 7875188.806238559, 7875425.816451724, 7876123.4375, 7876212.369955242, 7876701.488198721, 7876719.65418923, 7876823.4375, 7877079.6875, 7877101.5625, 7877157.8125, 7877428.141036393, 7877593.75, 7877968.453196099, 7878114.811126146, 7878296.875, 7878337.578154667, 7878601.089957665, 7878993.75, 7879378.125, 7879544.4974985495, 7879645.306330544, 7880096.875, 7880120.3125, 7880588.480728795, 7880678.986168816, 7880918.3356153425, 7880940.1755915275, 7881743.169520763, 7882586.775515002, 7887120.660474444, 7887473.364342448, 7887578.877612631, 7887889.178957117, 7888060.9375, 7888232.162168737, 7888395.558244503, 7888515.1770821, 7888596.875, 7889461.3574692765, 7890022.292137638, 7890621.762327564, 7891216.504946394, 7891219.470710307, 7891379.888159447, 7891545.3125, 7891555.972593133, 7891575.0, 7891631.25, 7891962.4918598365, 7891971.842834317, 7892015.625, 7892182.221332238, 7892220.3125, 7892348.373415484, 7892349.3895975, 7892484.375, 7892538.811139145, 7892556.637341044, 7892653.125, 7892668.3355330415, 7892746.509579259, 7892839.0625, 7893078.0717780525, 7893335.818227902, 7893338.225307366, 7893413.773993498, 7893543.448157911, 7893666.937983692, 7893700.722048537, 7893726.08256144, 7893826.5625, 7893879.6875, 7893989.642787745, 7894052.5587398885, 7894060.159496088, 7894096.875, 7894139.890688435, 7894161.8890347425, 7894224.548579608, 7894493.75, 7894735.9375, 7894820.156452976, 7894860.330909014, 7894881.667807839, 7894893.021010167, 7894964.196256903, 7894979.0706606265, 7895020.3125, 7895179.6875, 7895216.631653244, 7895364.150982892, 7895385.7501652725, 7895462.9770708755, 7895467.5090054395, 7895471.789552848, 7895534.375, 7895615.625, 7895721.837282163, 7895724.808455393, 7895792.1875, 7895823.4375, 7895859.229993463, 7895884.153436659, 7895903.7847653, 7896180.961432705, 7896270.3125, 7896295.3125, 7896297.513941067, 7896316.106585634, 7896367.175170779, 7896613.265210386, 7896634.295547575, 7896641.389899594, 7896676.675192041, 7896731.486376367, 7896806.939521217, 7896946.0754665835, 7897294.244367256, 7897479.250170629, 7897566.5266305115, 7897584.269448345, 7898030.978937473, 7898475.0, 7899079.350415913, 7899160.9375, 7899299.86898875, 7899526.28007251, 7899724.711493654, 7899898.006726027, 7900529.640861047, 7900651.836941144, 7901329.6875, 7902310.23074962, 7902462.70784244, 7905109.611798606, 7908467.74743296, 7908784.375, 7911222.560402498, 7913553.125, 7917832.208588128, 7918566.917979732, 7919373.430521669, 7919726.65238831, 7919824.9170544455, 7919836.788837266, 7920869.220425789, 7921066.234871551, 7922117.48327483, 7922129.514657897, 7922576.058062217, 7922706.25, 7922872.368027223, 7923292.1875, 7923668.58494791, 7924723.4375, 7925778.125, 7926123.4375, 7926257.1126546385, 7926712.433680362, 7927124.152438993, 7927651.965799788, 7927726.495569536, 7928327.060161075, 7928585.9375, 7948884.375, 7952511.92027587, 7953121.740044325, 7953401.253674452, 7953637.5, 7953714.0625, 7953726.496091027, 7953736.102370084, 7953803.706738592, 7953860.255844802, 7953975.259249267, 7954231.25, 7954514.0625, 7954749.824669491, 7954937.5, 7954946.984054703, 7955040.091524315, 7955290.577158619, 7955360.9375, 7955636.744524382, 7955640.5714348955, 7955666.186650904, 7955672.321265458, 7955764.542588087, 7955779.046133072, 7955814.592416668, 7955819.61710806, 7955820.582875519, 7955976.5625, 7956168.359603942, 7956514.995307133, 7956706.795166367, 7956713.385544212, 7956796.27984991, 7956800.0, 7956856.234102692, 7956878.125, 7957131.961771839, 7957225.981777516, 7957538.085253342, 7957650.0, 7957743.204827694, 7957882.8125, 7958192.1875, 7958232.8125, 7958838.6932764435, 7959356.25, 7959651.5625, 7960521.136458494, 7961074.583431417, 7961775.182414208, 7961846.483234435, 7961925.0, 7965206.69653513, 7968521.424327911, 7970167.803986718, 7978679.532818725, 7979005.1763001215, 7979385.582163739, 7979667.485584832, 7980592.1875, 7981092.1875, 7982082.095489581, 7982235.074365372, 7982268.75, 7982394.417474319, 7982539.0625, 7983048.74713483, 7983196.875, 7983431.267873052, 7983470.3125, 7983496.355994188, 7983631.227890504, 7983671.9697414385, 7983694.670905531, 7983701.038703606, 7983707.8125, 7983735.277246933, 7983742.1875, 7983784.375, 7983845.047159594, 7983923.4375, 7983987.5, 7983989.025546969, 7984032.666965983, 7984033.396187892, 7984103.125, 7984128.497316375, 7984180.072253547, 7984191.933644646, 7984213.648736492, 7984246.429360614, 7984283.481429543, 7984321.756732369, 7984342.168227902, 7984400.0, 7984435.716244976, 7984451.694840101, 7984460.9375, 7984463.305931923, 7984464.183206503, 7984464.200654473, 7984507.054307415, 7984589.662693684, 7984616.5665335925, 7984861.279783727, 7985037.831968996, 7985048.4375, 7985140.625, 7985178.125, 7985253.809781503, 7985263.655897988, 7985276.5625, 7985385.9375, 7985472.347482164, 7985555.861760376, 7985560.9375, 7985565.28605852, 7985854.394347923, 7985873.4375, 7985893.75, 7986101.246275288, 7986473.4375, 7986484.866552072, 7986495.153631836, 7987554.4958018605, 7988418.75, 7988856.25, 7990303.982935611, 7990400.0, 7990793.228335291, 7992398.541930922, 7995025.0, 7995079.9132312825, 7995250.0, 7995386.185137467, 7996237.5, 7996476.089670017, 7996581.284836047, 7996639.83810726, 7996756.531938978, 7996818.614939691, 7997066.4250360355, 7997161.480961036, 7997269.830892225, 7997439.6388288485, 7997570.34396494, 7998321.02819608, 7999796.261677841, 8002156.733887889, 8002162.5, 8002334.265270857, 8008868.42533855, 8009990.625, 8010863.89732032, 8011616.143499424, 8012351.793720111, ...], [64.45294417771487, 16.366344018853965, 13.57740192405644, 8.015310913868918, 10.149259729757194, 60.34043176229244, 100.18142690499052, 56.859980419136, 67.66768203030286, 5.147064924231568, 30.005625381578586, 42.783220940871644, 77.34133312219416, 43.23114161012228, 7.62567579600956, 14.866949630670982, 93.16934543152523, 36.28373762090489, 10.676049144459395, 8.026761247503611, 17.546830668227802, 8.189191783546688, 32.3057979843901, 16.526627720283113, 65.79450969692755, 36.152544173761825, 13.49391088317637, 17.83294338546385, 19.067384710827824, 88.86986999485732, 12.003588256874016, 18.354751447099375, 31.65035724615562, 22.667552335991243, 15.009169757603285, 28.5360070051947, 25.593796326727837, 26.796203216942573, 118.28640731338687, 18.034522648130714, 15.488140340219418, 29.95526786553798, 5.773560402190746, 65.64317681981062, 62.807932153944236, 81.0946008593823, 6.417375125445975, 17.81156264117276, 21.090394835616564, 18.587432524783946, 5.679149569871321, 17.21236332868938, 11.11164791620982, 9.450347242975473, 142.96455139877753, 7.853639850160952, 9.536370793771084, 41.913683201963956, 24.852297594956706, 9.724364208622246, 37.89769075063587, 72.83891355019912, 14.47389589012744, 28.645345799817, 100.23980493535703, 84.00796360976427, 82.21850100656495, 45.28111492566955, 65.45400357141904, 60.63645166558745, 62.45889438175942, 6.897600867053551, 9.892155668936551, 178.88709370022974, 10.864145724739059, 14.962877595066605, 117.01976587067165, 77.08019752929704, 13.955445416532616, 25.95741117820064, 22.222372035592986, 9.043062143526823, 17.656362596925085, 15.98254230627295, 7.281199879061287, 7.674136727321052, 24.497559163052202, 67.32945140227324, 6.103532859459954, 15.585865528170235, 54.15239617460276, 28.438318416751496, 87.0589967723111, 8.92385970209972, 46.079265454277625, 27.892820859890445, 13.362842160148501, 75.79128250651723, 11.663947177383825, 27.998255820483962, 43.3161039323702, 6.046231662297023, 103.24749074430954, 19.05096159164049, 12.210177170335147, 11.458168459213391, 50.268749779667914, 61.915520143536234, 29.83948663341889, 48.40618394132881, 58.88369206933561, 30.235932777879842, 76.65821604481124, 33.53734112524235, 12.437258045928273, 58.9109354411616, 5.618824484803256, 85.50707874378597, 77.53078014168416, 11.329397871286249, 67.4764811651786, 34.328023933366175, 73.45859546493563, 12.768618071144767, 73.18499511409716, 9.542883830990068, 47.634374830358944, 101.93747889266518, 12.2371979337573, 49.80093508605367, 49.995194258933594, 45.03167903414107, 42.4123134395152, 22.203245223465633, 75.25594188841251, 91.14921692072312, 13.474754841535987, 10.936864853820653, 30.00679599034676, 75.60779935463856, 52.7942644311837, 31.88009231283972, 22.067771219419814, 47.69005946690636, 52.80856271586919, 27.678018553261502, 45.18304779570549, 16.321731378865458, 42.89129445129922, 39.3728944662211, 10.046536395716487, 94.56917032908764, 6.748667716085153, 32.91591129368077, 209.26713014657798, 12.312463384396418, 100.20271529902641, 29.877742666867476, 8.810571021177743, 25.345738585383334, 15.096540639376018, 80.93575014203765, 14.647974639143564, 31.35666879405643, 135.12273378038034, 10.52317976899024, 43.62982375217089, 95.334049390955, 107.41290679461797, 52.9933750054746, 13.207795069249977, 88.33278833388515, 5.471774848726132, 44.055847428779614, 134.06764798885808, 6.323828185443724, 57.19683438020499, 24.311216884264198, 46.03177048160715, 41.20213209547931, 50.865780967230315, 36.164984863322374, 88.74760712104083, 49.72585972785135, 9.129054111265726, 60.080364254618814, 27.470057947017366, 52.04489236297866, 67.81374682968662, 38.185502206717445, 90.20169606746562, 61.70976045089125, 10.290736972749176, 22.298345230779894, 48.6074474558407, 105.65424276105841, 57.27213938286107, 5.354149017815928, 67.81040634508473, 5.938285229782736, 78.49198633987753, 20.807814739875106, 42.553557903905535, 8.581675981058346, 5.984322530308423, 50.754815015718634, 45.927105999258515, 15.770381719168315, 57.07275658007026, 5.68797668189689, 30.990927861601524, 60.13535599852288, 46.41820676729239, 96.45265535328457, 79.06237734320405, 6.043536442002616, 13.058773311301675, 70.57159395518872, 9.579174402092754, 62.94299671427369, 25.32280954774309, 25.659002579710517, 54.46825060338185, 6.271338383191313, 10.741400776171112, 56.37775699616079, 32.6130685380688, 64.01456449839864, 37.64429873838822, 80.63791005163301, 104.34334614871133, 25.85238645094131, 88.13629923549406, 10.093863945394784, 14.267743788312794, 40.487583951691484, 94.02317433940553, 43.39904068352172, 69.23749484161323, 6.583537911172086, 90.35478419717342, 47.003670399684054, 8.44339506263945, 31.429357313550057, 5.829890820455717, 60.56468015855316, 6.168919176690531, 72.66136756177092, 49.8972232620959, 55.162807119631864, 14.751797654901697, 57.683827701880034, 53.0689220158599, 41.861564076858954, 60.514903759819546, 5.591247232213301, 69.90489262180368, 26.9726492818481, 51.41902596229732, 8.986293900067626, 11.195426226306843, 6.7089276199311305, 73.30975614948247, 29.596983423499474, 6.832492794883686, 96.21852123653622, 92.86929801717585, 6.071137033819617, 20.126870566176912, 16.33103990170245, 11.890385369989833, 5.723443973098663, 78.85288804417819, 57.03268191133188, 17.403369670971262, 13.494674733515986, 49.400860622871576, 25.523524009675214, 33.649966759115415, 45.326021035054765, 59.543589973509754, 42.428764164285724, 5.769086860174644, 22.782507612977412, 5.342465213069815, 14.642510163072398, 7.251977388785608, 23.15390676449505, 23.819233620909493, 10.994285349735177, 68.19615033405094, 20.492448455762602, 101.3926741541161, 47.47810746740462, 7.307983171077915, 47.26305519705686, 13.097344490090343, 16.253989930569382, 38.70409414332573, 82.43281625672293, 48.27963691765407, 13.623032975332201, 8.961444774741768, 60.65554583035011, 9.29429118499824, 14.30994018609718, 57.59935965594606, 61.72417969897681, 14.064592655953732, 8.668073111192856, 74.19604288847883, 26.1963823546759, 83.88879791358917, 8.607913292115152, 24.726845161261835, 7.916739685572791, 18.6746680873049, 83.25059447320868, 20.142170716450238, 7.324471656019244, 7.582441420215448, 98.23257910606506, 11.12036732666249, 55.42408667816594, 77.62760576546037, 34.89781660264527, 12.20966898557623, 66.56955350573993, 50.92277703559719, 5.753519097183379, 48.080260882560594, 10.861583449477472, 9.131238220910971, 8.037724195935239, 17.202749833483942, 43.38030143680518, 8.522801246402553, 42.07442283772506, 9.810578803448486, 18.53622245403767, 36.025302024873156, 5.25837143387864, 84.61571850436556, 49.83115235135378, 9.562388951933938, 8.078014055834037, 41.139170251337156, 8.721348142801416, 29.47084000686148, 26.018761181935503, 5.474549529250609, 5.9495883113339, 11.605238819819947, 15.108966203025728, 5.0815981276115485, 20.195892667547866, 117.01544141218703, 18.981037254254776, 26.80707549694898, 62.317438650116905, 7.637371101621998, 81.83033336463743, 20.156554258430177, 36.0110861746314, 39.7515844464403, 46.7761445542542, 91.78999968196003, 5.171280785069933, 46.553120152261016, 13.403031957550855, 82.2107162904102, 11.999158338573581, 26.751374091152073, 35.43146006626347, 25.660941238075715, 41.26663043675154, 126.95865021981905, 27.53713790300809, 51.8640677573622, 50.8110280640965, 63.44649390328825, 28.03038214741987, 11.479317474433644, 36.43366541880477, 65.54759723176015, 18.988569607292686, 33.988176420367026, 7.220803953271465, 41.73029764052253, 48.45941611236963, 15.130348656814002, 5.844977683103379, 25.074500157507167, 30.613197856193466, 54.47131373963052, 21.974007900537348, 9.308036038152002, 70.71443534286877, 8.474135780537573, 40.747677339637555, 17.613694444017185, 6.099018152882145, 9.726212367253801, 6.8057797744572115, 10.052934271336587, 31.899708081592642, 21.489815023980995, 33.80816848872804, 99.94877433167835, 25.60825575913922, 62.322359922831936, 23.792121333763543, 8.383007700529177, 41.18180019672197, 14.612245225430641, 54.593645626845934, 8.865333619817491, 44.08830435102146, 13.739012407921011, 94.29224721345278, 44.0291924118784, 27.108233631531114, 47.16925608139471, 52.956579862709454, 28.705120984829637, 20.96237114312968, 43.01414671742364, 35.149729427047454, 67.79707114884415, 32.51120529512116, 43.774877126120884, 14.35293846896726, 53.874468922978025, 50.917595289586835, 28.519255839765414, 6.238832940564187, 103.69602327935121, 23.093662483178363, 6.9061113728521475, 55.57752430853968, 14.183172729670172, 30.992466175900223, 13.100619181899312, 22.908212400340776, 19.05069437753865, 65.94512702670443, 32.76173492201828, 49.96411304397223, 6.877015503688878, 91.95185931854891, 6.294571752888292, 5.177060713769514, 80.80324529929165, 66.07909275724784, 5.493783316303545, 16.586352414781114, 19.280319032862256, 7.28722421464187, 73.95910844588407, 52.02838967003785, 28.055720833110975, 22.22542131639398, 80.51347227790973, 62.592133981638995, 7.811793422787866, 18.8680969772644, 10.677191228595348, 26.636351790992006, 5.2241752117193565, 31.26279217373083, 5.9433126566749825, 64.93101944981859, 50.24431295787778, 53.1005016839183, 7.412450370420923, 52.90683496410045, 35.197847320480435, 5.8616568170385275, 87.62697681313217, 22.866412685942368, 42.5290402786345, 105.72820193765452, 12.837219624295548, 8.702188251693894, 5.39527560274844, 24.917711386218393, 63.37458018232178, 19.221240036996367, 80.64594364491585, 45.539128516627486, 92.23948628010419, 12.248255657973472, 11.827443706961152, 58.2246701515718, 88.92555036368991, 32.96577164001455, 11.075307100119375, 22.12734359423068, 95.72050142640369, 7.083324071314456, 76.43336155987964, 8.7983110678621, 17.75225787163132, 16.127273774386992, 13.214447623787485, 58.857908955869156, 60.493820468726796, 29.87079144191548, 133.7244781902838, 77.23073346508515, 78.37273502866984, 54.340024148184106, 6.352902672650254, 19.55215257790285, 25.85144735675041, 19.479497197715293, 15.637510775139322, 58.073920877968035, 14.631392307431419, 8.315057362994468, 10.139786607662485, 18.72469326711923, 82.31567534698407, 73.96472134958414, 131.19096216731091, 23.876552463530185, 75.50363579763206, 16.69265501507026, 23.00924030518563, 5.346970782421903, 29.62756911155155, 11.326818837890277, 32.99542915139557, 155.33533958967993, 79.75849154984084, 15.94401341296329, 17.79883220992977, 31.517368541146833, 7.487060666229086, 18.160373589906015, 26.105489289558545, 29.703157136421193, 5.355386422339254, 23.747000619411185, 49.856749480263616, 93.78323417644727, 7.502677373576164, 19.12392035454101, 87.75450077586137, 94.12252016231089, 9.757979090962186, 44.031858274344124, 20.919668967910802, 103.52785228754983, 12.032730213313314, 29.152061431368775, 27.92265590509748, 26.28767538132132, 142.99764172987193, 31.07539069803352, 6.821649146747405, 82.33606580907447, 87.87872557983323, 5.837768172009185, 44.41764640476454, 21.990099846986638, 13.529779535666366, 14.157947894767675, 87.19916034995644, 81.27587220267694, 7.884708527646026, 7.8475352895181, 16.872788227011128, 43.523113886498535, 28.718361984977566, 8.756676923568111, 70.505516476404, 44.961065983595475, 36.26930783928991, 14.221332859606889, 38.44132414722212, 41.44908187161642, 25.12342191562649, 8.885448140247757, 78.8852266496609, 5.292358971153323, 15.176639166418923, 44.17395484324007, 53.95380652304222, 40.065486969951486, 75.32609762088912, 47.00940984598555, 69.66672115734013, 62.52007156216717, 49.64198297658185, 30.17303784307427, 6.454487381682119, 33.38701443094299, 13.506861724453652, 5.570051794666164, 8.814100975556949, 60.12395541989959, 93.60617415447979, 71.75465613436387, 54.23431361342554, 10.126353289617592, 22.278422943834883, 77.43307394260326, 24.645465668050992, 25.061692476209608, 5.489460546347799, 7.415680858959144, 8.955472324273078, 110.97192456564518, 10.20198062571193, 25.07105541641341, 7.057350056082677, 67.90014040016483, 30.001073771308935, 49.497790398354894, 67.27466352455203, 35.43008522071692, 49.854541170313816, 28.9054221904292, 29.43270211747872, 74.96311841952938, 26.89223712112973, 193.91351179575133, 60.35504883474437, 11.373847625470725, 28.622893223420967, 18.28148668077963, 88.8481521171651, 6.929401304228567, 56.1208861767479, 111.92613352919022, 33.4919210070775, 9.971301502580449, 39.64315994401881, 26.636273678733218, 6.004046164162978, 35.87976098872337, 21.103596321253473, 47.75095312992921, 27.77554214366291, 13.023085706327144, 22.205169612928348, 6.696797722924185, 80.67072085390419, 48.506658654620196, 11.735601598458388, 73.71951554692065, 27.16194732468447, 22.707711523699036, 8.279049492703091, 43.331136127354405, 61.34925921066558, 87.69101071904949, 5.1127033202021765, 46.815839898858286, 67.4143965414987, 186.77688298809102, 49.88442878658022, 10.301896321924254, 12.198637069470768, 61.25811951049792, 13.375571500214736, 29.964162824387245, 34.29360609104895, 59.538003824983164, 7.259398562842443, 23.281928333332818, 80.43933543771686, 19.412614627874785, 11.232758091778804, 8.511956065685611, 17.770764416148847, 9.543359221046071, 56.10375999082774, 10.74946257522158, 44.549325759511056, 57.08417492155597, 7.556870293441548, 6.7487630017100475, 6.958525185517507, 87.07948051679838, 46.28389840817937, 52.684783072439785, 96.14784574953171, 15.002986969136053, 46.891316174391285, 7.499304036228155, 33.81898550646301, 67.11524641380991, 75.10172426736793, 13.401880482210816, 44.84837326177766, 31.92616666278433, 18.83722475331793, 14.91804637163757, 91.95258465418742, 29.533827077877916, 23.4021494841691, 10.18383642293343, 131.26173889714593, 58.35350995808607, 89.55429489800485, 8.78573173009552, 11.718966250345325, 8.248265602800057, 54.53634746123573, 15.404779684014429, 85.1379589433371, 24.84974450792748, 8.42095178192425, 43.37940124787158, 30.191668439144593, 88.99976486463078, 7.761414230991797, 38.76795798909882, 32.65274729375646, 10.025483364276804, 18.89864271497094, 53.25568968190682, 24.04369238274194, 78.49077210513173, 53.29926446523464, 75.04295308134218, 71.89105438076108, 127.77151444634157, 31.303620017374254, 81.40071712876139, 27.317934109283904, 20.4582081844689, 35.23868036666745, 24.392579434959565, 16.656638891750617, 64.61645607000575, 32.62956331821758, 24.8108225697584, 71.48299608365721, 27.900312066287892, 14.505586716410585, 18.68079327638732, 23.89867384607764, 142.91944986672044, 21.727975589486142, 18.658104697821873, 88.15733576345036, 71.17209712679134, 93.17877627087367, 44.58042355641029, 31.71988621128598, 17.89130383243612, 50.004590009177576, 19.43597439356271, 108.88634227826998, 5.90103413427224, 113.10559970622805, 106.77211662717991, 82.33944814367214, 69.75005075555625, 16.056570271882368, 12.739795589942105, 41.22166515819778, 10.283411215872155, 58.921154822908804, 56.618113739543126, 39.80618485122096, 11.268886355656297, 25.305105966598976, 5.850143347916868, 16.327035870368437, 26.941824123977877, 57.32689713792883, 28.67076662312129, 14.799669469164074, 25.24256220150113, 85.32203004378871, 103.58833570401364, 14.416189968103138, 24.807181147515234, 12.343593454005106, 64.73180536284546, 72.22279147963168, 60.85572193766306, 12.298599705598564, 76.39932970089573, 23.55843511328581, 12.57945916209546, 27.046118811224574, 38.53094343866066, 11.308541984560032, 124.20119201233568, 12.408775009941497, 24.593431365600768, 93.7911379942226, 48.14473019362698, 6.638371393356991, 26.59893867542163, 52.0555298023727, 86.66209553442602, 126.29034193418894, 66.66134027077211, 81.97656706370609, 23.97783169759247, 37.43844870756993, 55.0202206393507, 84.32170283654293, 11.585598339156062, 102.99456183798983, 21.401240945595234, 8.399633564608123, 6.2975870300035455, 17.613411792059154, 53.33468594419636, 23.20093134804592, 54.67453025430968, 8.868122790712034, 14.004946274987756, 28.387649210977056, 92.35598586951575, 17.99562306609789, 5.4320486784118165, 17.09939228956918, 17.91860565879054, 26.936867719567246, 46.19035071424659, 21.448944918017826, 65.585026689516, 21.35919104286431, 85.50157441729279, 58.733878596084224, 52.72187618368386, 186.42204167095636, 61.88758212871423, 19.70706822115672, 60.21594962674516, 218.71508547573364, 16.739282540540167, 27.26710743146426, 7.258719331038483, 93.93083162342491, 74.99452056035389, 8.8850197949247, 126.1397252419037, 13.882008570910498, 95.46772930428837, 31.008696854367972, 83.01077258583547, 85.9406241525565, 32.94728803599127, 12.854624853342008, 9.560674797257155, 69.95317615532637, 132.70599660572893, 35.03730878331739, 53.77785324143664, 102.39562468385401, 21.165538084418362, 7.586025439335141, 36.96057039046936, 34.54688147380849, 27.507775364252378, 5.743460310089619, 16.967395934004752, 71.12732846383378, 30.567561097592403, 97.09226315663439, 13.976121033504826, 11.57836491881218, 35.572077104877394, 22.6608777572792, 16.354348824352655, 9.839237964465207, 19.892550009009426, 17.82433617778441, 124.95291220061544, 28.214063968264036, 80.19094826066643, 18.587024114962762, 15.619600077392402, 60.49444628675784, 31.199369921982733, 5.893294315505055, 58.362484190777735, 79.27782320121554, 132.25283213668195, 8.100522135184997, 83.84783639052529, 104.57275803016411, 7.931163720288435, 6.215964473097916, 15.685567778330238, 5.0908228155281625, 107.85231556139107, 24.802839993342534, 48.553247063049454, 110.45783002719662, 29.585264038095634, 6.330995248065393, 23.068728525561802, 16.213994374134973, 63.68555730078951, 37.12283951594171, 59.044917335643504, 57.286042717569835, 44.20181661909919, 18.288538846432925, 78.16568184430143, 11.648822925904787, 31.979812338767665, 40.93508399345503, 40.35766091542634, 116.01797297441537, 11.093323204000846, 12.215296575535763, 8.84204728287769, 71.40532019635225, 75.98434713517247, 6.6384820999764775, 80.94122069590088, 36.481814044340574, 5.79460478862732, 93.29538007452629, 101.00552195420153, 11.070433942973434, 5.455554536032859, 9.879055910044451, 107.2062604776038, 61.4204424255724, 11.787530953611414, 49.822112996417104, 43.25986772278593, 22.053075611661175, 7.864529075765544, 7.0907059008562445, 118.12222361167322, 30.957519057316635, 24.811560673729243, 88.99696720634874, 115.98440529193282, 10.120521984204748, 15.422450489127527, 47.67096151726368, 71.804128351884, 5.746051190306376, 7.983402637004, 22.938413204491376, 40.71625870506979, 49.516524885685314, 45.11561118562062, 60.79623920645071, 7.871228975915573, 31.04109551018663, 35.87289579824442, 56.27997544688897, 98.28719929858546, 22.685450280875184, 34.34117387050034, 6.697674885592023, 23.83861028528529, 32.45490648286494, 56.05096414812159, 23.545682450324385, 58.457380664103724, 11.994046450418118, 5.525419527867129, 9.174406227078466, 89.0272058865306, 69.86163395746651, 33.8844771983423, 96.5544845100699, 28.022405104823907, 15.35507346581548, 43.312783752985, 51.37209516505879, 215.3662754914812, 23.035092937525572, 60.49587036368052, 62.8301170987707, 5.2461213292465505, 58.76811956530133, 9.581746519908775, 91.34759913645803, 117.78484358421939, 78.8595221860416, 41.74068696054239, 17.71208979528172, 28.884337802916313, 43.76531494945585, 53.92740981411272, 9.777062755249558, 38.51086376429923, 12.079292100795147, 7.489887458201797, 67.45355276990826, 5.240545651576241, 7.802190888052731, 14.127525113360948, ...])
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);
([4877478.125, 5011251.892046396, 5011701.151780769, 5013324.449207502, 5033018.018652489, 5035759.961668363, 5038653.810210283, 5163804.022283464, 5165888.238239414, 5170221.071645472, 5171175.0, 5171564.0625, 5172626.5625, 5172903.125, 5174623.4991148785, 5175446.855299862, 5261017.841588938, 5295384.375, 5378135.627957297, 5379171.349093651, 5379175.292605078, 5379177.936187685, 5379303.125, 5379309.3356788615, 5379395.3125, 5379895.3125, 5379935.497668644, 5380064.658582707, 5380366.404291916, 5407456.25, 5411664.558847521, 5412711.614963598, 5413181.979957019, 5413377.432861808, 5413854.705138946, 5414031.25, 5414156.081776218, 5414204.593589606, 5414588.718111803, 5414602.426956528, 5414657.948885188, 5414695.3125, 5415060.375858728, 5415081.613004492, 5415495.176912001, 5415639.0625, 5415799.540365767, 5415928.717613762, 5416194.771160359, 5417571.024331179, 5417585.494776704, 5418127.0532103665, 5418131.2397016715, 5424690.762397793, 5428417.977395061, 5463945.955536802, 5467067.420350723, 5468988.345409001, 5469970.09410653, 5469975.4308420485, 5471791.502533219, 5479362.15241849, 5483987.371657065, 5487028.603551922, 5487031.25, 5487906.952151615, 5487914.87861663, 5488129.6875, 5488295.235763613, 5489315.625, 5489850.0, 5490142.82400713, 5490299.033740429, 5490716.59578682, 5492326.387073781, 5494706.465555722, 5495093.384691714, 5495891.996740686, 5500390.33977429, 5500548.292620856, 5500744.882625268, 5514621.513101748, 5515511.504599328, 5515994.117923013, 5516000.574742534, 5517167.379361529, 5517222.773503052, 5517417.1875, 5517565.772116791, 5517792.346871159, 5518199.847229325, 5518231.245600878, 5518268.279534255, 5519124.475198952, 5519781.25, 5522076.529750192, 5522374.513380532, 5523016.4692087555, 5523065.94296366, 5524741.343062824, 5526249.974206307, 5526532.400035021, 5528642.1875, 5528675.444050476, 5529692.78482347, 5540948.639108943, 5543328.125, 5544139.0625, 5544727.388476198, 5561295.3125, 5571234.375, 5596901.5625, 6803120.3125, 6863207.779507087, 6870005.3898736155, 6905958.275317338, 6925293.836086755, 6925543.639872434, 6925685.9375, 6926078.250314064, 6926228.125, 6926615.625, 6926775.321649776, 6927580.533012483, 6928110.227451739, 6930729.927449233, 6930737.741938835, 6935351.048898712, 6936445.922640097, 6937131.019405516, 6942158.584843513, 6978610.9375, 6984703.125, 7014719.880859175, 7104143.75, 7113282.691159437, 7132518.6046421155, 7132518.624375082, 7132524.364316918, 7133075.0, 7133648.4375, 7134163.933415832, 7134168.30574098, 7134271.875, 7135074.84997177, 7135337.455722819, 7136282.388154726, 7138287.820416302, 7142090.5999144735, 7142448.4375, 7169766.364833272, 7254082.863835789, 7254453.050215568, 7255021.875, 7255206.25, 7255249.082882567, 7255860.502194555, 7255960.9375, 7256438.374833016, 7256623.252886861, 7256645.352588227, 7256873.4375, 7256881.170795441, 7257044.967311155, 7257418.0291540725, 7257444.887951361, 7257574.890353122, 7257807.327776896, 7259088.329769418, 7280320.3125, 7280335.3164808275, 7411687.044105654, 7411823.668623725, 7434380.252496549, 7438216.762070216, 7439422.310452057, 7441937.5, 7442575.121325681, 7457435.800373329, 7457782.8125, 7458720.3071998395, 7459026.540301555, 7459057.073593034, 7459229.642258611, 7459532.563087505, 7459746.875, 7459769.713278257, 7460842.548864368, 7461772.662446122, 7484479.6875, 7485057.634269938, 7485488.0163373845, 7485499.389265123, 7485509.119480141, 7485980.7306808075, 7486254.6875, 7486346.875, 7486473.790045312, 7487546.913077492, 7488635.924626759, 7489082.8125, 7490355.678445285, 7499317.360266728, 7510728.644245667, 7514778.62671918, 7514891.2637555525, 7517245.3125, 7517250.201699961, 7532712.716655319, 7539990.325793407, 7540452.818334423, 7541803.125, 7541857.678299986, 7542148.620728704, 7542157.8125, 7542566.747789511, 7542775.96192088, 7543185.51321533, 7543244.029179133, 7543404.372377224, 7543550.313536981, 7544495.334332384, 7544541.915508789, 7544657.845198014, 7544727.862947247, 7545582.8125, 7548135.402980972, 7590051.5625, 7590388.806830485, 7591547.913520871, 7597587.5, 7599294.293337671, 7599575.0, 7599766.407311432, 7599910.748737201, 7599921.875, 7599943.75, 7600590.625, 7603231.25, 7606011.526349086, 7606469.702463855, 7606580.080126829, 7612206.535221665, 7613873.4375, 7617018.962741587, 7626985.9375, 7630102.305405005, 7631421.548386872, 7632081.194602096, 7632246.772253109, 7635674.554925795, 7637654.705292134, 7638270.3125, 7642228.15220651, 7647087.5, 7652508.955440192, 7668218.75, 7669059.29133039, 7669245.3125, 7669752.686563576, 7670595.355397038, 7670729.407827208, 7670734.375, 7670974.350945892, 7670989.398499147, 7671044.376690188, 7671057.8125, 7671162.335293398, 7671289.976192015, 7671336.134234107, 7671343.440011083, 7671401.821528105, 7671488.592862354, 7671699.943484909, 7671742.71170878, 7671866.747937394, 7672068.407640469, 7672196.104203735, 7672239.317807729, 7672723.4375, 7672939.0625, 7673267.1875, 7673335.311750272, 7673358.048729657, 7674460.953353376, 7675020.231778183, 7675484.849312561, 7675498.0892940145, 7676513.7678431375, 7676528.037930543, 7676725.0, 7676806.123313076, 7677797.927902679, 7678009.375, 7679286.602554818, 7679403.125, 7679479.101814756, 7679825.306422139, 7679964.796354116, 7680143.157572528, 7680167.647179101, 7680207.417470434, 7680263.589969353, 7680309.596539398, 7680465.580780849, 7680572.211163606, 7680762.5, 7681210.171178487, 7681274.749191783, 7681395.970378493, 7681523.4375, 7681557.682540256, 7681782.8125, 7681795.874438991, 7681851.335257545, 7681892.978389594, 7681956.974428603, 7681958.760243882, 7682574.353000922, 7682658.532348242, 7682693.692133027, 7682695.000476298, 7682937.4952993505, 7683012.5, 7683156.25, 7683620.3125, 7684317.784581583, 7687403.191827174, 7687831.25, 7691074.148000158, 7691685.9375, 7691745.135298776, 7691773.19089199, 7692072.935276235, 7693114.551498076, 7693184.375, 7694847.296497082, 7695703.991791202, 7697138.017093483, 7701752.266863987, 7702373.211781701, 7703825.46578656, 7705731.25, 7711823.4375, 7711853.38610188, 7715066.77111973, 7715715.625, 7715921.05314069, 7716125.0, 7716353.14344503, 7717192.481980275, 7717262.616189834, 7717370.597939484, 7717389.105751304, 7717433.499090651, 7719688.662672723, 7719906.007501439, 7720842.954981359, 7720948.3442252735, 7723827.922571416, 7724046.968398012, 7724468.75, 7735322.79219827, 7735854.461410976, 7735996.875, 7736160.217126019, 7736198.4375, 7736214.314857238, 7737369.930395307, 7739004.215371043, 7739029.6875, 7739239.556622651, 7739303.323150887, 7739668.460106725, 7739671.711146957, 7739737.489336659, 7740065.4990693135, 7740285.893889714, 7740305.41573497, 7740306.51844279, 7740319.703416439, 7740325.923752385, 7740564.276376459, 7740591.498947448, 7740698.4375, 7740930.456017172, 7741012.5, 7741355.052434444, 7741491.293772692, 7741626.5625, 7741693.7986774165, 7741695.722824573, 7741720.109517186, 7741727.6152753765, 7741731.151940414, 7741880.796894258, 7741929.6597348945, 7742163.146338118, 7742247.213598802, 7742300.522766628, 7742460.219370037, 7742507.916848228, 7742603.557719938, 7742643.958119979, 7742735.120616707, 7743279.6875, 7743358.328727737, 7743364.816261444, 7743376.5625, 7743446.707719773, 7743626.5625, 7743707.515732575, 7743711.115505831, 7743725.0, 7743961.787308028, 7744084.1058961665, 7744132.204578128, 7744400.0, 7744435.581663093, 7744702.634607363, 7744717.116374316, 7744973.101970334, 7745095.3125, 7745787.5, 7745790.625, 7745796.674493689, 7745865.290920967, 7745896.875, 7745898.594483975, 7745976.495109984, 7746656.25, 7747010.774007913, 7747171.875, 7747434.375, 7747712.626652877, 7749327.897140892, 7749950.983281178, 7750154.334257666, 7750245.987162269, 7750921.875, 7752013.848218975, 7752681.25, 7753055.665573209, 7754955.881049164, 7763768.289485737, 7763785.652723131, 7766878.125, 7767795.3125, 7769063.043159874, 7774048.4375, 7774133.02613101, 7783723.932847542, 7784187.5, 7794198.4375, 7794208.537809884, 7796234.570510866, 7796247.8683507135, 7804288.09519928, 7806489.0625, 7807376.764814668, 7807648.772159415, 7807649.337109106, 7808046.850018954, 7808060.9375, 7808114.604523196, 7808180.439321598, 7808270.003795634, 7808281.146672049, 7808432.04554834, 7808506.243135003, 7808615.669756104, 7808641.993649562, 7808814.821895441, 7808846.875, 7808899.439784108, 7808979.6875, 7808998.4375, 7809053.749211285, 7809090.63527868, 7809145.266024223, 7809212.5, 7809295.3125, 7809353.998752288, 7809417.898608589, 7809548.353582394, 7809594.359114079, 7809619.578852042, 7809738.299996563, 7809778.66752101, 7810139.0625, 7810300.504863119, 7810367.802859811, 7810378.530853294, 7810390.625, 7810403.462781203, 7810454.6875, 7810545.278715628, 7810552.686313287, 7810696.875, 7810798.290443057, 7810887.506761511, 7810946.1692119455, 7811067.7704339195, 7811097.154813141, 7811231.978916325, 7811275.0, 7811303.20619062, 7811365.168874848, 7811479.6875, 7811514.0625, 7811589.0625, 7811700.0, 7811756.8995170025, 7811889.288811991, 7811959.223399283, 7812241.458804973, 7812314.669031551, 7812321.705829937, 7812479.603686243, 7812612.553470649, 7813005.510366369, 7813310.106583673, 7813504.541294643, 7813557.8125, 7813835.755365829, 7813857.778388743, 7814706.07011915, 7814761.331822113, 7814812.051335311, 7814812.646612498, 7815208.590101114, 7815270.436257308, 7815495.083369536, 7815524.682448586, 7815543.585855772, 7815568.990302821, 7816008.403043064, 7816062.167827655, 7816076.229443409, 7816097.5228665685, 7816274.864404238, 7816369.91660305, 7816426.950251415, 7816676.262207071, 7816812.5, 7817129.665335113, 7817285.650635306, 7818312.48721568, 7820160.9375, 7820267.630305958, 7820341.089797562, 7820538.0682246145, 7820888.503028506, 7821209.375, 7822798.948419852, 7822947.986119169, 7823752.453389358, 7824031.12565409, 7824193.75, 7824203.125, 7824204.97192047, 7824375.786322475, 7825151.5625, 7825764.3789016055, 7825781.836871294, 7825876.11091924, 7825888.635240314, 7826862.278022619, 7827318.75, 7827600.0, 7829031.9664927395, 7829177.190950932, 7829353.553635653, 7830048.4375, 7830496.875, 7832167.981923462, 7837932.762193612, 7838267.1875, 7838422.3084383095, 7838435.734787363, 7838439.0625, 7838645.3125, 7838815.3233126905, 7838827.545886703, 7838831.25, 7838848.47861527, 7838848.497850983, 7838998.4375, 7839009.048894065, 7839218.75, 7839223.4375, 7839335.9375, 7839463.950416495, 7839677.485382093, 7840569.979641934, 7840810.104059673, 7841184.163811039, 7841235.388974625, 7841482.377219153, 7841578.863943892, 7842163.380032137, 7842880.632582876, 7842982.8125, 7843332.8125, 7843485.9375, 7843533.623569788, 7845231.9150048625, 7845346.875, 7845663.829458855, 7846016.983637895, 7846089.692233593, 7846094.762347681, 7846838.581720178, 7847950.0, 7848611.814278382, 7849284.855575406, 7850677.875401967, 7850979.317228655, 7851298.139050775, 7851846.371112272, 7851955.734486403, 7852054.214450102, 7852331.25, 7852393.954450196, 7852592.22934894, 7852817.622239745, 7853246.786683205, 7853604.008677777, 7853897.518923154, 7854373.589465507, 7856572.969435769, 7867697.045995836, 7868337.5, 7868853.902797445, 7869226.5625, 7869335.73751958, 7869382.535093187, 7869645.9833385525, 7869685.059897554, 7869709.271667413, 7869921.025990998, 7870012.5, 7870052.5850470355, 7870225.0, 7870234.335982612, 7870257.1980226645, 7870451.131037036, 7870513.71891472, 7870557.213461884, 7871237.5, 7871250.663062518, 7871273.4375, 7871332.739641047, 7871369.926208996, 7871420.29823758, 7871436.83549694, 7871617.1875, 7871694.028984702, 7871711.648087696, 7871771.875, 7871907.8125, 7872075.0, 7872234.375, 7872305.648535307, 7872308.404322864, 7872436.725680729, 7872439.254059144, 7872503.663931639, 7872604.6875, 7872679.6875, 7872686.437507399, 7872841.849890109, 7872915.422214013, 7873033.637660527, 7873071.941184777, 7873100.40319039, 7873692.773463768, 7873776.802966662, 7874715.430266027, 7875188.806238559, 7875425.816451724, 7876123.4375, 7876212.369955242, 7876701.488198721, 7876719.65418923, 7876823.4375, 7877079.6875, 7877101.5625, 7877157.8125, 7877428.141036393, 7877593.75, 7877968.453196099, 7878114.811126146, 7878296.875, 7878337.578154667, 7878601.089957665, 7878993.75, 7879378.125, 7879544.4974985495, 7879645.306330544, 7880096.875, 7880120.3125, 7880588.480728795, 7880678.986168816, 7880918.3356153425, 7880940.1755915275, 7881743.169520763, 7882586.775515002, 7887120.660474444, 7887473.364342448, 7887578.877612631, 7887889.178957117, 7888060.9375, 7888232.162168737, 7888395.558244503, 7888515.1770821, 7888596.875, 7889461.3574692765, 7890022.292137638, 7890621.762327564, 7891216.504946394, 7891219.470710307, 7891379.888159447, 7891545.3125, 7891555.972593133, 7891575.0, 7891631.25, 7891962.4918598365, 7891971.842834317, 7892015.625, 7892182.221332238, 7892220.3125, 7892348.373415484, 7892349.3895975, 7892484.375, 7892538.811139145, 7892556.637341044, 7892653.125, 7892668.3355330415, 7892746.509579259, 7892839.0625, 7893078.0717780525, 7893335.818227902, 7893338.225307366, 7893413.773993498, 7893543.448157911, 7893666.937983692, 7893700.722048537, 7893726.08256144, 7893826.5625, 7893879.6875, 7893989.642787745, 7894052.5587398885, 7894060.159496088, 7894096.875, 7894139.890688435, 7894161.8890347425, 7894224.548579608, 7894493.75, 7894735.9375, 7894820.156452976, 7894860.330909014, 7894881.667807839, 7894893.021010167, 7894964.196256903, 7894979.0706606265, 7895020.3125, 7895179.6875, 7895216.631653244, 7895364.150982892, 7895385.7501652725, 7895462.9770708755, 7895467.5090054395, 7895471.789552848, 7895534.375, 7895615.625, 7895721.837282163, 7895724.808455393, 7895792.1875, 7895823.4375, 7895859.229993463, 7895884.153436659, 7895903.7847653, 7896180.961432705, 7896270.3125, 7896295.3125, 7896297.513941067, 7896316.106585634, 7896367.175170779, 7896613.265210386, 7896634.295547575, 7896641.389899594, 7896676.675192041, 7896731.486376367, 7896806.939521217, 7896946.0754665835, 7897294.244367256, 7897479.250170629, 7897566.5266305115, 7897584.269448345, 7898030.978937473, 7898475.0, 7899079.350415913, 7899160.9375, 7899299.86898875, 7899526.28007251, 7899724.711493654, 7899898.006726027, 7900529.640861047, 7900651.836941144, 7901329.6875, 7902310.23074962, 7902462.70784244, 7905109.611798606, 7908467.74743296, 7908784.375, 7911222.560402498, 7913553.125, 7917832.208588128, 7918566.917979732, 7919373.430521669, 7919726.65238831, 7919824.9170544455, 7919836.788837266, 7920869.220425789, 7921066.234871551, 7922117.48327483, 7922129.514657897, 7922576.058062217, 7922706.25, 7922872.368027223, 7923292.1875, 7923668.58494791, 7924723.4375, 7925778.125, 7926123.4375, 7926257.1126546385, 7926712.433680362, 7927124.152438993, 7927651.965799788, 7927726.495569536, 7928327.060161075, 7928585.9375, 7948884.375, 7952511.92027587, 7953121.740044325, 7953401.253674452, 7953637.5, 7953714.0625, 7953726.496091027, 7953736.102370084, 7953803.706738592, 7953860.255844802, 7953975.259249267, 7954231.25, 7954514.0625, 7954749.824669491, 7954937.5, 7954946.984054703, 7955040.091524315, 7955290.577158619, 7955360.9375, 7955636.744524382, 7955640.5714348955, 7955666.186650904, 7955672.321265458, 7955764.542588087, 7955779.046133072, 7955814.592416668, 7955819.61710806, 7955820.582875519, 7955976.5625, 7956168.359603942, 7956514.995307133, 7956706.795166367, 7956713.385544212, 7956796.27984991, 7956800.0, 7956856.234102692, 7956878.125, 7957131.961771839, 7957225.981777516, 7957538.085253342, 7957650.0, 7957743.204827694, 7957882.8125, 7958192.1875, 7958232.8125, 7958838.6932764435, 7959356.25, 7959651.5625, 7960521.136458494, 7961074.583431417, 7961775.182414208, 7961846.483234435, 7961925.0, 7965206.69653513, 7968521.424327911, 7970167.803986718, 7978679.532818725, 7979005.1763001215, 7979385.582163739, 7979667.485584832, 7980592.1875, 7981092.1875, 7982082.095489581, 7982235.074365372, 7982268.75, 7982394.417474319, 7982539.0625, 7983048.74713483, 7983196.875, 7983431.267873052, 7983470.3125, 7983496.355994188, 7983631.227890504, 7983671.9697414385, 7983694.670905531, 7983701.038703606, 7983707.8125, 7983735.277246933, 7983742.1875, 7983784.375, 7983845.047159594, 7983923.4375, 7983987.5, 7983989.025546969, 7984032.666965983, 7984033.396187892, 7984103.125, 7984128.497316375, 7984180.072253547, 7984191.933644646, 7984213.648736492, 7984246.429360614, 7984283.481429543, 7984321.756732369, 7984342.168227902, 7984400.0, 7984435.716244976, 7984451.694840101, 7984460.9375, 7984463.305931923, 7984464.183206503, 7984464.200654473, 7984507.054307415, 7984589.662693684, 7984616.5665335925, 7984861.279783727, 7985037.831968996, 7985048.4375, 7985140.625, 7985178.125, 7985253.809781503, 7985263.655897988, 7985276.5625, 7985385.9375, 7985472.347482164, 7985555.861760376, 7985560.9375, 7985565.28605852, 7985854.394347923, 7985873.4375, 7985893.75, 7986101.246275288, 7986473.4375, 7986484.866552072, 7986495.153631836, 7987554.4958018605, 7988418.75, 7988856.25, 7990303.982935611, 7990400.0, 7990793.228335291, 7992398.541930922, 7995025.0, 7995079.9132312825, 7995250.0, 7995386.185137467, 7996237.5, 7996476.089670017, 7996581.284836047, 7996639.83810726, 7996756.531938978, 7996818.614939691, 7997066.4250360355, 7997161.480961036, 7997269.830892225, 7997439.6388288485, 7997570.34396494, 7998321.02819608, 7999796.261677841, 8002156.733887889, 8002162.5, 8002334.265270857, 8008868.42533855, 8009990.625, 8010863.89732032, 8011616.143499424, 8012351.793720111, ...], [64.45294417771487, 16.366344018853965, 13.57740192405644, 8.015310913868918, 10.149259729757194, 60.34043176229244, 100.18142690499052, 56.859980419136, 67.66768203030286, 5.147064924231568, 30.005625381578586, 42.783220940871644, 77.34133312219416, 43.23114161012228, 7.62567579600956, 14.866949630670982, 93.16934543152523, 36.28373762090489, 10.676049144459395, 8.026761247503611, 17.546830668227802, 8.189191783546688, 32.3057979843901, 16.526627720283113, 65.79450969692755, 36.152544173761825, 13.49391088317637, 17.83294338546385, 19.067384710827824, 88.86986999485732, 12.003588256874016, 18.354751447099375, 31.65035724615562, 22.667552335991243, 15.009169757603285, 28.5360070051947, 25.593796326727837, 26.796203216942573, 118.28640731338687, 18.034522648130714, 15.488140340219418, 29.95526786553798, 5.773560402190746, 65.64317681981062, 62.807932153944236, 81.0946008593823, 6.417375125445975, 17.81156264117276, 21.090394835616564, 18.587432524783946, 5.679149569871321, 17.21236332868938, 11.11164791620982, 9.450347242975473, 142.96455139877753, 7.853639850160952, 9.536370793771084, 41.913683201963956, 24.852297594956706, 9.724364208622246, 37.89769075063587, 72.83891355019912, 14.47389589012744, 28.645345799817, 100.23980493535703, 84.00796360976427, 82.21850100656495, 45.28111492566955, 65.45400357141904, 60.63645166558745, 62.45889438175942, 6.897600867053551, 9.892155668936551, 178.88709370022974, 10.864145724739059, 14.962877595066605, 117.01976587067165, 77.08019752929704, 13.955445416532616, 25.95741117820064, 22.222372035592986, 9.043062143526823, 17.656362596925085, 15.98254230627295, 7.281199879061287, 7.674136727321052, 24.497559163052202, 67.32945140227324, 6.103532859459954, 15.585865528170235, 54.15239617460276, 28.438318416751496, 87.0589967723111, 8.92385970209972, 46.079265454277625, 27.892820859890445, 13.362842160148501, 75.79128250651723, 11.663947177383825, 27.998255820483962, 43.3161039323702, 6.046231662297023, 103.24749074430954, 19.05096159164049, 12.210177170335147, 11.458168459213391, 50.268749779667914, 61.915520143536234, 29.83948663341889, 48.40618394132881, 58.88369206933561, 30.235932777879842, 76.65821604481124, 33.53734112524235, 12.437258045928273, 58.9109354411616, 5.618824484803256, 85.50707874378597, 77.53078014168416, 11.329397871286249, 67.4764811651786, 34.328023933366175, 73.45859546493563, 12.768618071144767, 73.18499511409716, 9.542883830990068, 47.634374830358944, 101.93747889266518, 12.2371979337573, 49.80093508605367, 49.995194258933594, 45.03167903414107, 42.4123134395152, 22.203245223465633, 75.25594188841251, 91.14921692072312, 13.474754841535987, 10.936864853820653, 30.00679599034676, 75.60779935463856, 52.7942644311837, 31.88009231283972, 22.067771219419814, 47.69005946690636, 52.80856271586919, 27.678018553261502, 45.18304779570549, 16.321731378865458, 42.89129445129922, 39.3728944662211, 10.046536395716487, 94.56917032908764, 6.748667716085153, 32.91591129368077, 209.26713014657798, 12.312463384396418, 100.20271529902641, 29.877742666867476, 8.810571021177743, 25.345738585383334, 15.096540639376018, 80.93575014203765, 14.647974639143564, 31.35666879405643, 135.12273378038034, 10.52317976899024, 43.62982375217089, 95.334049390955, 107.41290679461797, 52.9933750054746, 13.207795069249977, 88.33278833388515, 5.471774848726132, 44.055847428779614, 134.06764798885808, 6.323828185443724, 57.19683438020499, 24.311216884264198, 46.03177048160715, 41.20213209547931, 50.865780967230315, 36.164984863322374, 88.74760712104083, 49.72585972785135, 9.129054111265726, 60.080364254618814, 27.470057947017366, 52.04489236297866, 67.81374682968662, 38.185502206717445, 90.20169606746562, 61.70976045089125, 10.290736972749176, 22.298345230779894, 48.6074474558407, 105.65424276105841, 57.27213938286107, 5.354149017815928, 67.81040634508473, 5.938285229782736, 78.49198633987753, 20.807814739875106, 42.553557903905535, 8.581675981058346, 5.984322530308423, 50.754815015718634, 45.927105999258515, 15.770381719168315, 57.07275658007026, 5.68797668189689, 30.990927861601524, 60.13535599852288, 46.41820676729239, 96.45265535328457, 79.06237734320405, 6.043536442002616, 13.058773311301675, 70.57159395518872, 9.579174402092754, 62.94299671427369, 25.32280954774309, 25.659002579710517, 54.46825060338185, 6.271338383191313, 10.741400776171112, 56.37775699616079, 32.6130685380688, 64.01456449839864, 37.64429873838822, 80.63791005163301, 104.34334614871133, 25.85238645094131, 88.13629923549406, 10.093863945394784, 14.267743788312794, 40.487583951691484, 94.02317433940553, 43.39904068352172, 69.23749484161323, 6.583537911172086, 90.35478419717342, 47.003670399684054, 8.44339506263945, 31.429357313550057, 5.829890820455717, 60.56468015855316, 6.168919176690531, 72.66136756177092, 49.8972232620959, 55.162807119631864, 14.751797654901697, 57.683827701880034, 53.0689220158599, 41.861564076858954, 60.514903759819546, 5.591247232213301, 69.90489262180368, 26.9726492818481, 51.41902596229732, 8.986293900067626, 11.195426226306843, 6.7089276199311305, 73.30975614948247, 29.596983423499474, 6.832492794883686, 96.21852123653622, 92.86929801717585, 6.071137033819617, 20.126870566176912, 16.33103990170245, 11.890385369989833, 5.723443973098663, 78.85288804417819, 57.03268191133188, 17.403369670971262, 13.494674733515986, 49.400860622871576, 25.523524009675214, 33.649966759115415, 45.326021035054765, 59.543589973509754, 42.428764164285724, 5.769086860174644, 22.782507612977412, 5.342465213069815, 14.642510163072398, 7.251977388785608, 23.15390676449505, 23.819233620909493, 10.994285349735177, 68.19615033405094, 20.492448455762602, 101.3926741541161, 47.47810746740462, 7.307983171077915, 47.26305519705686, 13.097344490090343, 16.253989930569382, 38.70409414332573, 82.43281625672293, 48.27963691765407, 13.623032975332201, 8.961444774741768, 60.65554583035011, 9.29429118499824, 14.30994018609718, 57.59935965594606, 61.72417969897681, 14.064592655953732, 8.668073111192856, 74.19604288847883, 26.1963823546759, 83.88879791358917, 8.607913292115152, 24.726845161261835, 7.916739685572791, 18.6746680873049, 83.25059447320868, 20.142170716450238, 7.324471656019244, 7.582441420215448, 98.23257910606506, 11.12036732666249, 55.42408667816594, 77.62760576546037, 34.89781660264527, 12.20966898557623, 66.56955350573993, 50.92277703559719, 5.753519097183379, 48.080260882560594, 10.861583449477472, 9.131238220910971, 8.037724195935239, 17.202749833483942, 43.38030143680518, 8.522801246402553, 42.07442283772506, 9.810578803448486, 18.53622245403767, 36.025302024873156, 5.25837143387864, 84.61571850436556, 49.83115235135378, 9.562388951933938, 8.078014055834037, 41.139170251337156, 8.721348142801416, 29.47084000686148, 26.018761181935503, 5.474549529250609, 5.9495883113339, 11.605238819819947, 15.108966203025728, 5.0815981276115485, 20.195892667547866, 117.01544141218703, 18.981037254254776, 26.80707549694898, 62.317438650116905, 7.637371101621998, 81.83033336463743, 20.156554258430177, 36.0110861746314, 39.7515844464403, 46.7761445542542, 91.78999968196003, 5.171280785069933, 46.553120152261016, 13.403031957550855, 82.2107162904102, 11.999158338573581, 26.751374091152073, 35.43146006626347, 25.660941238075715, 41.26663043675154, 126.95865021981905, 27.53713790300809, 51.8640677573622, 50.8110280640965, 63.44649390328825, 28.03038214741987, 11.479317474433644, 36.43366541880477, 65.54759723176015, 18.988569607292686, 33.988176420367026, 7.220803953271465, 41.73029764052253, 48.45941611236963, 15.130348656814002, 5.844977683103379, 25.074500157507167, 30.613197856193466, 54.47131373963052, 21.974007900537348, 9.308036038152002, 70.71443534286877, 8.474135780537573, 40.747677339637555, 17.613694444017185, 6.099018152882145, 9.726212367253801, 6.8057797744572115, 10.052934271336587, 31.899708081592642, 21.489815023980995, 33.80816848872804, 99.94877433167835, 25.60825575913922, 62.322359922831936, 23.792121333763543, 8.383007700529177, 41.18180019672197, 14.612245225430641, 54.593645626845934, 8.865333619817491, 44.08830435102146, 13.739012407921011, 94.29224721345278, 44.0291924118784, 27.108233631531114, 47.16925608139471, 52.956579862709454, 28.705120984829637, 20.96237114312968, 43.01414671742364, 35.149729427047454, 67.79707114884415, 32.51120529512116, 43.774877126120884, 14.35293846896726, 53.874468922978025, 50.917595289586835, 28.519255839765414, 6.238832940564187, 103.69602327935121, 23.093662483178363, 6.9061113728521475, 55.57752430853968, 14.183172729670172, 30.992466175900223, 13.100619181899312, 22.908212400340776, 19.05069437753865, 65.94512702670443, 32.76173492201828, 49.96411304397223, 6.877015503688878, 91.95185931854891, 6.294571752888292, 5.177060713769514, 80.80324529929165, 66.07909275724784, 5.493783316303545, 16.586352414781114, 19.280319032862256, 7.28722421464187, 73.95910844588407, 52.02838967003785, 28.055720833110975, 22.22542131639398, 80.51347227790973, 62.592133981638995, 7.811793422787866, 18.8680969772644, 10.677191228595348, 26.636351790992006, 5.2241752117193565, 31.26279217373083, 5.9433126566749825, 64.93101944981859, 50.24431295787778, 53.1005016839183, 7.412450370420923, 52.90683496410045, 35.197847320480435, 5.8616568170385275, 87.62697681313217, 22.866412685942368, 42.5290402786345, 105.72820193765452, 12.837219624295548, 8.702188251693894, 5.39527560274844, 24.917711386218393, 63.37458018232178, 19.221240036996367, 80.64594364491585, 45.539128516627486, 92.23948628010419, 12.248255657973472, 11.827443706961152, 58.2246701515718, 88.92555036368991, 32.96577164001455, 11.075307100119375, 22.12734359423068, 95.72050142640369, 7.083324071314456, 76.43336155987964, 8.7983110678621, 17.75225787163132, 16.127273774386992, 13.214447623787485, 58.857908955869156, 60.493820468726796, 29.87079144191548, 133.7244781902838, 77.23073346508515, 78.37273502866984, 54.340024148184106, 6.352902672650254, 19.55215257790285, 25.85144735675041, 19.479497197715293, 15.637510775139322, 58.073920877968035, 14.631392307431419, 8.315057362994468, 10.139786607662485, 18.72469326711923, 82.31567534698407, 73.96472134958414, 131.19096216731091, 23.876552463530185, 75.50363579763206, 16.69265501507026, 23.00924030518563, 5.346970782421903, 29.62756911155155, 11.326818837890277, 32.99542915139557, 155.33533958967993, 79.75849154984084, 15.94401341296329, 17.79883220992977, 31.517368541146833, 7.487060666229086, 18.160373589906015, 26.105489289558545, 29.703157136421193, 5.355386422339254, 23.747000619411185, 49.856749480263616, 93.78323417644727, 7.502677373576164, 19.12392035454101, 87.75450077586137, 94.12252016231089, 9.757979090962186, 44.031858274344124, 20.919668967910802, 103.52785228754983, 12.032730213313314, 29.152061431368775, 27.92265590509748, 26.28767538132132, 142.99764172987193, 31.07539069803352, 6.821649146747405, 82.33606580907447, 87.87872557983323, 5.837768172009185, 44.41764640476454, 21.990099846986638, 13.529779535666366, 14.157947894767675, 87.19916034995644, 81.27587220267694, 7.884708527646026, 7.8475352895181, 16.872788227011128, 43.523113886498535, 28.718361984977566, 8.756676923568111, 70.505516476404, 44.961065983595475, 36.26930783928991, 14.221332859606889, 38.44132414722212, 41.44908187161642, 25.12342191562649, 8.885448140247757, 78.8852266496609, 5.292358971153323, 15.176639166418923, 44.17395484324007, 53.95380652304222, 40.065486969951486, 75.32609762088912, 47.00940984598555, 69.66672115734013, 62.52007156216717, 49.64198297658185, 30.17303784307427, 6.454487381682119, 33.38701443094299, 13.506861724453652, 5.570051794666164, 8.814100975556949, 60.12395541989959, 93.60617415447979, 71.75465613436387, 54.23431361342554, 10.126353289617592, 22.278422943834883, 77.43307394260326, 24.645465668050992, 25.061692476209608, 5.489460546347799, 7.415680858959144, 8.955472324273078, 110.97192456564518, 10.20198062571193, 25.07105541641341, 7.057350056082677, 67.90014040016483, 30.001073771308935, 49.497790398354894, 67.27466352455203, 35.43008522071692, 49.854541170313816, 28.9054221904292, 29.43270211747872, 74.96311841952938, 26.89223712112973, 193.91351179575133, 60.35504883474437, 11.373847625470725, 28.622893223420967, 18.28148668077963, 88.8481521171651, 6.929401304228567, 56.1208861767479, 111.92613352919022, 33.4919210070775, 9.971301502580449, 39.64315994401881, 26.636273678733218, 6.004046164162978, 35.87976098872337, 21.103596321253473, 47.75095312992921, 27.77554214366291, 13.023085706327144, 22.205169612928348, 6.696797722924185, 80.67072085390419, 48.506658654620196, 11.735601598458388, 73.71951554692065, 27.16194732468447, 22.707711523699036, 8.279049492703091, 43.331136127354405, 61.34925921066558, 87.69101071904949, 5.1127033202021765, 46.815839898858286, 67.4143965414987, 186.77688298809102, 49.88442878658022, 10.301896321924254, 12.198637069470768, 61.25811951049792, 13.375571500214736, 29.964162824387245, 34.29360609104895, 59.538003824983164, 7.259398562842443, 23.281928333332818, 80.43933543771686, 19.412614627874785, 11.232758091778804, 8.511956065685611, 17.770764416148847, 9.543359221046071, 56.10375999082774, 10.74946257522158, 44.549325759511056, 57.08417492155597, 7.556870293441548, 6.7487630017100475, 6.958525185517507, 87.07948051679838, 46.28389840817937, 52.684783072439785, 96.14784574953171, 15.002986969136053, 46.891316174391285, 7.499304036228155, 33.81898550646301, 67.11524641380991, 75.10172426736793, 13.401880482210816, 44.84837326177766, 31.92616666278433, 18.83722475331793, 14.91804637163757, 91.95258465418742, 29.533827077877916, 23.4021494841691, 10.18383642293343, 131.26173889714593, 58.35350995808607, 89.55429489800485, 8.78573173009552, 11.718966250345325, 8.248265602800057, 54.53634746123573, 15.404779684014429, 85.1379589433371, 24.84974450792748, 8.42095178192425, 43.37940124787158, 30.191668439144593, 88.99976486463078, 7.761414230991797, 38.76795798909882, 32.65274729375646, 10.025483364276804, 18.89864271497094, 53.25568968190682, 24.04369238274194, 78.49077210513173, 53.29926446523464, 75.04295308134218, 71.89105438076108, 127.77151444634157, 31.303620017374254, 81.40071712876139, 27.317934109283904, 20.4582081844689, 35.23868036666745, 24.392579434959565, 16.656638891750617, 64.61645607000575, 32.62956331821758, 24.8108225697584, 71.48299608365721, 27.900312066287892, 14.505586716410585, 18.68079327638732, 23.89867384607764, 142.91944986672044, 21.727975589486142, 18.658104697821873, 88.15733576345036, 71.17209712679134, 93.17877627087367, 44.58042355641029, 31.71988621128598, 17.89130383243612, 50.004590009177576, 19.43597439356271, 108.88634227826998, 5.90103413427224, 113.10559970622805, 106.77211662717991, 82.33944814367214, 69.75005075555625, 16.056570271882368, 12.739795589942105, 41.22166515819778, 10.283411215872155, 58.921154822908804, 56.618113739543126, 39.80618485122096, 11.268886355656297, 25.305105966598976, 5.850143347916868, 16.327035870368437, 26.941824123977877, 57.32689713792883, 28.67076662312129, 14.799669469164074, 25.24256220150113, 85.32203004378871, 103.58833570401364, 14.416189968103138, 24.807181147515234, 12.343593454005106, 64.73180536284546, 72.22279147963168, 60.85572193766306, 12.298599705598564, 76.39932970089573, 23.55843511328581, 12.57945916209546, 27.046118811224574, 38.53094343866066, 11.308541984560032, 124.20119201233568, 12.408775009941497, 24.593431365600768, 93.7911379942226, 48.14473019362698, 6.638371393356991, 26.59893867542163, 52.0555298023727, 86.66209553442602, 126.29034193418894, 66.66134027077211, 81.97656706370609, 23.97783169759247, 37.43844870756993, 55.0202206393507, 84.32170283654293, 11.585598339156062, 102.99456183798983, 21.401240945595234, 8.399633564608123, 6.2975870300035455, 17.613411792059154, 53.33468594419636, 23.20093134804592, 54.67453025430968, 8.868122790712034, 14.004946274987756, 28.387649210977056, 92.35598586951575, 17.99562306609789, 5.4320486784118165, 17.09939228956918, 17.91860565879054, 26.936867719567246, 46.19035071424659, 21.448944918017826, 65.585026689516, 21.35919104286431, 85.50157441729279, 58.733878596084224, 52.72187618368386, 186.42204167095636, 61.88758212871423, 19.70706822115672, 60.21594962674516, 218.71508547573364, 16.739282540540167, 27.26710743146426, 7.258719331038483, 93.93083162342491, 74.99452056035389, 8.8850197949247, 126.1397252419037, 13.882008570910498, 95.46772930428837, 31.008696854367972, 83.01077258583547, 85.9406241525565, 32.94728803599127, 12.854624853342008, 9.560674797257155, 69.95317615532637, 132.70599660572893, 35.03730878331739, 53.77785324143664, 102.39562468385401, 21.165538084418362, 7.586025439335141, 36.96057039046936, 34.54688147380849, 27.507775364252378, 5.743460310089619, 16.967395934004752, 71.12732846383378, 30.567561097592403, 97.09226315663439, 13.976121033504826, 11.57836491881218, 35.572077104877394, 22.6608777572792, 16.354348824352655, 9.839237964465207, 19.892550009009426, 17.82433617778441, 124.95291220061544, 28.214063968264036, 80.19094826066643, 18.587024114962762, 15.619600077392402, 60.49444628675784, 31.199369921982733, 5.893294315505055, 58.362484190777735, 79.27782320121554, 132.25283213668195, 8.100522135184997, 83.84783639052529, 104.57275803016411, 7.931163720288435, 6.215964473097916, 15.685567778330238, 5.0908228155281625, 107.85231556139107, 24.802839993342534, 48.553247063049454, 110.45783002719662, 29.585264038095634, 6.330995248065393, 23.068728525561802, 16.213994374134973, 63.68555730078951, 37.12283951594171, 59.044917335643504, 57.286042717569835, 44.20181661909919, 18.288538846432925, 78.16568184430143, 11.648822925904787, 31.979812338767665, 40.93508399345503, 40.35766091542634, 116.01797297441537, 11.093323204000846, 12.215296575535763, 8.84204728287769, 71.40532019635225, 75.98434713517247, 6.6384820999764775, 80.94122069590088, 36.481814044340574, 5.79460478862732, 93.29538007452629, 101.00552195420153, 11.070433942973434, 5.455554536032859, 9.879055910044451, 107.2062604776038, 61.4204424255724, 11.787530953611414, 49.822112996417104, 43.25986772278593, 22.053075611661175, 7.864529075765544, 7.0907059008562445, 118.12222361167322, 30.957519057316635, 24.811560673729243, 88.99696720634874, 115.98440529193282, 10.120521984204748, 15.422450489127527, 47.67096151726368, 71.804128351884, 5.746051190306376, 7.983402637004, 22.938413204491376, 40.71625870506979, 49.516524885685314, 45.11561118562062, 60.79623920645071, 7.871228975915573, 31.04109551018663, 35.87289579824442, 56.27997544688897, 98.28719929858546, 22.685450280875184, 34.34117387050034, 6.697674885592023, 23.83861028528529, 32.45490648286494, 56.05096414812159, 23.545682450324385, 58.457380664103724, 11.994046450418118, 5.525419527867129, 9.174406227078466, 89.0272058865306, 69.86163395746651, 33.8844771983423, 96.5544845100699, 28.022405104823907, 15.35507346581548, 43.312783752985, 51.37209516505879, 215.3662754914812, 23.035092937525572, 60.49587036368052, 62.8301170987707, 5.2461213292465505, 58.76811956530133, 9.581746519908775, 91.34759913645803, 117.78484358421939, 78.8595221860416, 41.74068696054239, 17.71208979528172, 28.884337802916313, 43.76531494945585, 53.92740981411272, 9.777062755249558, 38.51086376429923, 12.079292100795147, 7.489887458201797, 67.45355276990826, 5.240545651576241, 7.802190888052731, 14.127525113360948, ...])
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)