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 = 45346
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);
([4533600.581332714, 4614651.718573868, 4702012.152324141, 5054759.958855549, 5056873.935883439, 5057073.4375, 5064500.711837092, 5076631.7316711005, 5170621.966160163, 5173860.3742344435, 5262629.922011983, 5264213.4925048845, 5267462.953456312, 5271107.489044412, 5323020.061105629, 5324049.254030731, 5331996.677620477, 5367093.767536037, 5368182.09261791, 5370904.265812066, 5371243.792853056, 5371613.233980978, 5371615.915884152, 5372556.425656875, 5372564.024575139, 5372587.5, 5372748.395696257, 5373050.802292735, 5375807.400277732, 5386651.148788081, 5405810.9375, 5405811.484184547, 5405813.013988767, 5406801.646962966, 5407859.502570552, 5407967.949851286, 5408767.993721453, 5409661.685013525, 5409676.5625, 5409781.119044104, 5410664.0625, 5410681.25, 5410932.580599679, 5412712.5, 5414723.884321621, 5414733.045364706, 5415214.189686784, 5421020.21360754, 5422108.605866689, 5424646.288574569, 5440014.0625, 5441292.1875, 5441407.8125, 5442609.759370593, 5443587.280319009, 5443814.262391053, 5443851.5625, 5444007.787194037, 5444209.056118262, 5446673.745816909, 5448364.555539967, 5448816.174821295, 5448877.40295788, 5448993.75, 5449198.4375, 5449252.601201148, 5449598.4375, 5449831.043495982, 5450026.087792052, 5450389.0625, 5466918.75, 5467891.89504626, 5469059.771043005, 5472794.546371295, 5473751.7113912245, 5474027.0998734385, 5491785.9375, 5494932.368378949, 5496414.871895225, 5501084.104635229, 5501234.11296575, 5501621.307997572, 5501933.396543491, 5501970.722687863, 5507290.625, 5508940.122138476, 5509404.495689984, 5509546.788241903, 5518134.375, 5551415.766454306, 5551637.153003738, 5552176.190779094, 5552185.344739627, 5552626.5625, 5552791.474508541, 5555561.480048197, 7130850.0, 7255927.666478827, 7257976.142201145, 7259604.071641453, 7260022.542804809, 7282812.092066751, 7282812.530295535, 7284060.242412677, 7285782.9740119055, 7286455.374120263, 7286691.579740602, 7289092.1875, 7311908.657846592, 7312044.925057952, 7313219.3514877735, 7340510.9375, 7340826.5625, 7366353.102693515, 7366801.746019865, 7367035.21171343, 7367068.881157324, 7367093.192730217, 7367740.625, 7367808.025884875, 7367821.954455754, 7368973.778830126, 7369159.329407183, 7369346.680628366, 7369637.5, 7369654.276723467, 7370093.069750638, 7370113.0404885365, 7370240.718235895, 7370282.154753807, 7370348.4297868125, 7370522.502222253, 7370560.9375, 7370879.411078038, 7371057.033542678, 7371081.25, 7375960.9375, 7397700.199628317, 7398403.125, 7400528.767989777, 7400907.077831285, 7401035.140928326, 7402132.8125, 7405993.6311069345, 7406337.5, 7425038.714130671, 7437485.9375, 7439160.9375, 7441104.311013412, 7443021.875, 7444432.167996312, 7445301.580191642, 7452771.544257543, 7456816.530203581, 7458607.837991136, 7459470.462087509, 7461343.072178145, 7461385.9375, 7461634.375, 7462133.778375818, 7462742.185694798, 7463531.686802403, 7463718.947189216, 7463996.848064132, 7464316.2899574125, 7465806.064792916, 7472096.2251766175, 7472190.804943562, 7474026.821174438, 7476034.375, 7476067.055437353, 7476183.756789536, 7476826.895465465, 7476981.25, 7477117.1875, 7477252.425020563, 7477531.25, 7477564.385438112, 7477686.140535298, 7477795.3125, 7477809.198741533, 7477891.760355158, 7478231.436601012, 7478393.203416325, 7478579.6875, 7478585.61768538, 7478747.853900815, 7478764.384160354, 7478815.740705482, 7478899.570240237, 7478992.319987098, 7479034.356246244, 7479039.806717399, 7479161.673529665, 7479206.25, 7479229.6875, 7479403.140178393, 7479446.231440678, 7479513.0053981785, 7479625.0, 7479631.25, 7479635.9375, 7479681.257462917, 7479727.087777138, 7480186.127750807, 7480212.909591, 7480226.5625, 7480245.196326395, 7480275.518923971, 7480537.112121726, 7480855.4690975305, 7480942.163912128, 7480995.833063413, 7481074.5342093585, 7481545.57175695, 7481600.0, 7481661.751564687, 7482106.387348454, 7484345.711439639, 7485813.878726546, 7487132.8125, 7508800.772866417, 7511843.75, 7512648.2299580695, 7512921.394071594, 7520355.167460218, 7534833.045024907, 7544920.820113827, 7544978.540552323, 7545271.158116133, 7545331.082192256, 7545445.138791847, 7545570.3125, 7545836.474059491, 7546268.077998778, 7546596.426458315, 7546870.566213264, 7546967.034273791, 7547083.764843809, 7560006.967605688, 7573593.010006068, 7573604.767689151, 7573646.875, 7573670.3125, 7574814.0625, 7574841.787715979, 7574858.350734725, 7574859.104311866, 7574871.859365178, 7575164.279107836, 7575428.125, 7575442.1875, 7575550.230333882, 7575574.788582442, 7575777.951828106, 7576098.936778937, 7576277.493032713, 7576819.51013872, 7577299.754927745, 7577923.44587923, 7578261.435141512, 7578537.5, 7578596.961502468, 7579070.3125, 7579459.375, 7580992.274219973, 7582456.050387825, 7582554.6875, 7584254.904294129, 7584854.210439497, 7592425.152395214, 7595057.8125, 7611815.564086987, 7611865.282208581, 7612109.751301499, 7612154.456878653, 7612553.293000838, 7612704.40566823, 7612987.247583755, 7612990.625, 7612999.523235025, 7613420.292806413, 7613456.604553853, 7613655.003914366, 7613900.0, 7613984.375, 7614009.045952097, 7614026.5625, 7614429.6875, 7614605.2206134265, 7614652.448379404, 7614812.899865724, 7615198.086729319, 7615370.3125, 7615511.600618446, 7615638.662352463, 7616107.8125, 7616113.7530366285, 7616454.6875, 7619582.220487826, 7630975.0, 7639009.93515339, 7639359.375, 7639540.625, 7639552.112212269, 7639985.9375, 7640439.890735721, 7641263.658750196, 7642495.3125, 7642946.875, 7643004.40051655, 7643026.5625, 7643057.932484314, 7643326.5625, 7643623.163321054, 7643800.824866443, 7644003.308355737, 7644170.3125, 7644181.25, 7644194.949075019, 7644245.737677547, 7644423.2543667415, 7644653.125, 7644851.5625, 7645026.462821502, 7645505.135135091, 7645555.311442958, 7645949.588873143, 7646089.822391509, 7646880.5652662115, 7647318.75, 7648392.1875, 7656310.9375, 7657486.519954386, 7658454.508594686, 7658647.008123988, 7659079.593188779, 7662148.4375, 7662193.868492853, 7663485.35992381, 7663681.25, 7663874.619500375, 7664159.165440858, 7664935.786969955, 7665677.867339769, 7666299.16107939, 7666374.134338231, 7666494.69440371, 7666900.0, 7669482.2582983645, 7669669.783393214, 7669719.050550677, 7669729.903085469, 7670546.327149686, 7670632.8125, 7670713.805985256, 7670798.3025194695, 7670926.150399598, 7671121.377063084, 7671140.135196949, 7671481.598222197, 7671963.651949804, 7672211.538142364, 7672255.532610023, 7672766.064426353, 7673311.382124411, 7673500.595110963, 7673941.610758146, 7673943.75, 7674140.179960391, 7674254.425621526, 7674970.165411968, 7675537.5, 7676875.672332426, 7676932.276546538, 7677850.066784676, 7678323.4405047465, 7678384.131128327, 7679312.456121103, 7679438.885081177, 7680158.700048805, 7680434.375, 7680772.360745862, 7681329.118640543, 7684074.4904714385, 7686915.352464188, 7691037.435288977, 7691907.997528757, 7691914.83580752, 7692164.369968065, 7692368.75, 7692435.9375, 7692479.6875, 7692662.464597799, 7692673.3451818675, 7692925.807918398, 7693029.650856124, 7693040.625, 7693056.527342704, 7693059.033697785, 7693098.636058878, 7693275.2152408585, 7693425.762410693, 7693662.5, 7693832.564098711, 7693834.185890362, 7693889.757550759, 7694157.247007078, 7694165.368631816, 7694237.772059209, 7694242.627820295, 7694318.75, 7694425.758256223, 7694473.984495546, 7694582.733334029, 7695049.750930375, 7695123.520425079, 7695128.828904043, 7695203.017012993, 7695253.773192486, 7695343.549324702, 7695471.875, 7695555.622113337, 7695971.690164323, 7695981.25, 7696023.4375, 7696036.052860982, 7696100.0, 7696203.239397824, 7696324.779476644, 7696436.87809668, 7696936.348370539, 7696991.919708124, 7697181.25, 7697276.961558601, 7697852.66873726, 7698182.8119175425, 7698511.6247935705, 7698775.0, 7699337.492933176, 7699439.242052186, 7699720.147083474, 7699777.964933839, 7699916.208811402, 7700188.854550957, 7702006.25, 7702190.432298113, 7703112.5, 7703181.455087928, 7703185.462733316, 7703692.767920578, 7703739.0625, 7703744.29981576, 7703975.0, 7703993.443110658, 7704022.414886819, 7704028.227461113, 7704155.204664016, 7706160.889115517, 7710974.230643363, 7726484.728787348, 7734209.549632553, 7735809.62908538, 7736240.625, 7739105.424807929, 7740017.993807916, 7740123.343712607, 7740373.964672589, 7740687.5, 7740708.943330985, 7740823.4375, 7741199.37419887, 7741301.258299717, 7742012.1415230995, 7742231.25, 7742403.667326359, 7742473.4375, 7742532.17172271, 7742990.935555887, 7743046.875, 7743056.963369591, 7743058.513117285, 7743060.766021605, 7743092.1875, 7743332.625189613, 7743410.088591653, 7743943.182753278, 7743950.0, 7743973.85697145, 7744144.103250378, 7744158.17158411, 7744175.125910978, 7744348.505957693, 7744379.152780967, 7744382.8125, 7744497.6512450995, 7744533.213749541, 7744609.460156739, 7744715.954975923, 7744850.357759021, 7745023.032585389, 7745260.8236849485, 7745321.31134578, 7745355.710496403, 7745456.232768617, 7745673.980685449, 7745693.231042031, 7745951.5625, 7746033.179022608, 7746040.13156402, 7746109.585477675, 7746112.82005856, 7746154.9694663575, 7746216.883125668, 7746762.760521893, 7746916.667523701, 7746945.010983733, 7747410.483584801, 7762279.666180788, 7765928.033683427, 7769881.25, 7807560.471636272, 7812939.0625, 7828096.073013909, 7828355.777999672, 7828424.483995004, 7828655.2609110875, 7828792.488360346, 7828816.932559221, 7828895.3125, 7828914.0625, 7828983.474170684, 7829041.654181289, 7829077.8105710335, 7829358.455783656, 7829359.889897601, 7829389.694463567, 7829606.183122504, 7829679.538498887, 7829706.183141292, 7830047.893895959, 7830235.716764415, 7830301.183618018, 7830472.80119178, 7830620.129800189, 7830680.197063995, 7834900.508866502, 7835600.123626949, 7836123.4375, 7836132.543257865, 7836195.511975592, 7836307.272087162, 7836364.187221875, 7836388.044979409, 7836505.042838987, 7836517.192364376, 7836621.875, 7836668.75, 7836689.0625, 7836699.855453091, 7836759.121996558, 7836798.4375, 7836799.533073716, 7836804.6875, 7836849.258509409, 7836853.773491259, 7836860.457113752, 7836878.362434768, 7836886.942659926, 7836902.998451753, 7836964.021881552, 7837046.875, 7837068.044150875, 7837092.610497565, 7837121.875, 7837157.90418698, 7837220.3125, 7837255.538900093, 7837275.73638812, 7837285.9375, 7837308.1401591, 7837358.811505934, 7837449.370308512, 7837476.5625, 7837484.977989375, 7837498.501860904, 7837532.8125, 7837635.5512986295, 7837645.535336665, 7837712.247454031, 7837725.0, 7837734.09149459, 7837742.176346575, 7837876.555104292, 7837882.87309006, 7837896.305376216, 7837898.803363984, 7837901.526022631, 7837907.8125, 7837927.395651505, 7838002.0925916275, 7838014.694807029, 7838107.075056271, 7838122.648119529, 7838142.1875, 7838187.5, 7838235.416300348, 7838236.3618717445, 7838253.808524964, 7838278.204490908, 7838316.92329482, 7838332.433642429, 7838341.744131938, 7838343.2001858605, 7838363.774749525, 7838383.998949177, 7838388.453620533, 7838393.196576945, 7838398.4375, 7838411.203472306, 7838423.219394241, 7838428.925108094, 7838463.069595373, 7838470.357877855, 7838471.876560698, 7838542.136355324, 7838582.8125, 7838589.819357597, 7838635.003973913, 7838685.9375, 7838716.266298286, 7838729.5359462015, 7838738.520019224, 7838753.941681751, 7838815.662274533, 7838818.688116088, 7838873.3139679255, 7838923.42869745, 7838939.0625, 7838944.63877131, 7839034.796650008, 7839046.529517459, 7839048.210640467, 7839060.5599323185, 7839085.08102197, 7839126.5625, 7839256.25, 7839328.125, 7839420.856962897, 7839483.831284759, 7839668.68486403, 7840021.875, 7849980.924412094, 7850760.9375, 7851655.175755926, 7851664.845342715, 7852307.8125, 7857334.603785678, 7858842.66925114, 7858925.728562989, 7858985.547420649, 7859443.75, 7859707.8125, 7859793.75, 7860201.656454885, 7860245.020774805, 7860553.075303373, 7860587.5, 7860730.090777309, 7860803.125, 7860913.4930510195, 7860921.875, 7861050.7738827, 7861104.6875, 7861228.778809238, 7861334.0219797855, 7861336.230943744, 7861372.589287072, 7861522.08412507, 7861531.095155106, 7861544.656440977, 7861694.607909901, 7861820.3125, 7861866.215619889, 7861875.0, 7862095.3125, 7862114.0625, 7862227.669381659, 7862228.420652937, 7862231.73132129, 7862403.749795174, 7862464.333087376, 7862587.5, 7862637.240925442, 7862708.445613308, 7862760.284600342, 7862909.339885105, 7863099.848656473, 7863258.107427184, 7863440.252704373, 7863519.400597411, 7863560.640636287, 7863953.125, 7863992.437396584, 7864016.218135164, 7864118.28915033, 7864200.421597983, 7864357.730321984, 7864378.125, 7864417.175639943, 7864483.941301086, 7864513.195309885, 7864515.500229114, 7864751.5625, 7864904.52628043, 7864939.646404477, 7864955.824005034, 7865159.367145383, 7865230.784229298, 7865301.5625, 7865435.9375, 7865684.630762049, 7865719.288999104, 7865913.999869675, 7865951.5625, 7865964.0625, 7866020.009896049, 7866030.971387973, 7866054.6875, 7866070.198201175, 7866078.834804322, 7866101.5625, 7866117.804495838, 7866159.375, 7866192.79087041, 7866286.887582087, 7866339.0625, 7866418.482721371, 7866525.0, 7866561.756295846, 7866570.6485245135, 7866574.401425431, 7866626.081356338, 7866691.729047906, 7866714.0625, 7866755.733607429, 7866766.186453445, 7866835.049101078, 7866875.0, 7866888.916845761, 7866902.961271364, 7866948.207490584, 7866964.91144362, 7866965.0883174725, 7866982.8125, 7867023.082921007, 7867104.6875, 7867128.716020551, 7867234.185412758, 7867288.663355424, 7867315.199545518, 7867385.9375, 7867518.838532965, 7867573.4375, 7867641.152555777, 7867646.551926116, 7867661.519225684, 7867679.6875, 7867781.776939428, 7867830.861519991, 7867917.364671723, 7867920.672659277, 7867955.3302811375, 7868070.3125, 7868119.527885217, 7868135.9375, 7868161.557433477, 7868169.711964152, 7868171.708627116, 7868292.68519586, 7868353.8934575375, 7868368.088243942, 7868370.3125, 7868391.974231327, 7868393.75, 7868428.125, 7868504.6875, 7868551.5625, 7868570.049675634, 7868584.302411688, 7868592.853365545, 7868595.6260604, 7868691.173956742, 7868714.854940993, 7868799.688555586, 7868892.206645112, 7868951.060171039, 7869019.956972238, 7869036.595743789, 7869048.179271407, 7869090.625, 7869220.253471945, 7869290.625, 7869296.875, 7869338.416627524, 7869339.0625, 7869499.014128097, 7869529.6875, 7869608.53396746, 7869723.976294446, 7869730.357080915, 7869779.477318304, 7870010.855031986, 7870280.863473287, 7870289.0625, 7870437.5, 7870723.1652792, 7870802.527850535, 7871129.472466176, 7871192.784994705, 7871363.27438834, 7871437.5, 7872104.566598, 7872963.960136457, 7873093.741291111, 7875304.857695494, 7875355.336326903, 7875384.788565539, 7876080.618274842, 7876265.625, 7876983.567413253, 7877206.640252805, 7878636.917154813, 7884177.762254309, 7885796.819382042, 7890571.892820023, 7893080.7280113725, 7893090.320556534, 7894179.809356616, 7894190.625, 7894445.0557896495, 7895328.902931205, 7895898.064675188, 7896430.322699462, 7896532.981232115, 7896611.213605003, 7896613.48317553, 7898920.707724467, 7900673.404381435, 7903415.758443775, 7905244.325079228, 7915617.1875, 7916904.495633369, 7922043.75, 7925705.669616626, 7926551.5625, 7928649.30820541, 7929959.375, 7929970.3125, 7931054.6875, 7932017.564917438, 7932065.625, 7932659.072273009, 7933384.579031703, 7933775.648232523, 7950877.367881125, 7950932.5802383125, 7951867.1875, 7951877.893045023, 7952109.375, 7953300.494999093, 7953370.949616082, 7953923.4375, 7954102.696873491, 7954156.05231612, 7954186.846917654, 7954328.352320523, 7954430.854027052, 7954437.5, 7954664.0625, 7954878.125, 7955403.125, 7955515.434365863, 7956154.621363581, 8037551.088034987, 8052556.25, 8052994.401948865, 8053178.093986538, 8053513.266611659, 8070882.376266819, 8074173.353784807, 8074471.838569336, 8074634.880178571, 8075686.362925397, 8076114.410672115, 8076567.960300915, 8076770.336026593, 8077624.541189592, 8078012.5, 8078478.374699695, 8078620.3125, 8078626.896703979, 8078638.676725512, 8080440.625, 8082812.450761894, 8083466.884922489, 8084320.673616316, 8085417.480636754, 8085460.9375, 8086362.719633268, 8086633.914512227, 8086781.737889378, 8086949.327785857, 8087401.033700542, 8087664.0625, 8087775.532224303, 8087871.091720129, 8088300.567996274, 8090413.400844699, 8090942.21029665, 8091057.622276073, 8091489.762546085, 8091964.753075723, 8092139.558818692, 8093705.710568043, 8096899.999831993, 8111762.690911484, 8112840.053239405, 8112905.638256362, 8114334.921385314, 8115356.208297321, 8115664.0625, 8117470.3125, 8117603.688609441, 8117791.222273659, 8118152.12641857, 8118263.520839604, 8118763.976590371, 8119875.0, 8123174.02423379, 8124448.409288131, 8125326.043029559, 8126371.875, 8127634.9102961905, 8128138.712973346, 8128575.0, 8129339.311623819, 8129710.748974122, 8130040.625, 8130657.568049319, 8132087.207606269, 8132310.214222402, 8132312.422315576, 8132363.522659461, 8132442.578423724, 8132452.006608352, 8132465.612284058, 8132470.3125, 8132482.8125, 8132517.055808375, 8132534.686424372, 8132548.911342506, 8132570.191997605, 8132581.25, 8132584.375, 8132586.611113737, 8132586.808837332, 8132588.177450484, 8132595.424507472, 8132614.317712037, 8132616.841792903, 8132618.75, 8132671.875, 8132695.3125, 8132707.718854333, 8132731.15648655, 8132734.054222224, 8132752.49649991, 8132772.890784372, 8132777.068262228, 8132791.812021125, 8132800.0, 8132805.21577283, 8132821.875, 8132828.303207229, 8132833.301634489, 8132840.625, 8132849.545722507, 8132862.879512318, 8132881.25, 8132885.9375, 8132890.06826198, 8132896.875, 8132901.5625, 8132904.327729804, 8132904.6875, 8132904.6875, 8132918.75, 8132921.875, 8132941.027085772, ...], [5.858283604494968, 9.466953703263748, 97.69483545419452, 14.760248214037215, 17.255620120399076, 87.46411865868899, 7.3220495227525815, 11.97446035355754, 73.93425277169953, 6.198563518837759, 15.917631384058403, 7.409317647863509, 86.30627144042775, 23.455682517942247, 36.198312832288366, 61.64830159678388, 25.784012118481108, 15.008772506809228, 19.548297049869895, 6.045318343404709, 5.463608850856272, 17.90088537677982, 9.590100611611199, 5.347977047790089, 11.068940754759838, 29.54802871881611, 7.588187637695093, 32.929646528710805, 9.005582071433174, 22.39933663131464, 60.89471977449219, 7.272976938228096, 17.34449763471777, 32.09145758491447, 7.15539477607023, 12.572880625864983, 11.528129139400319, 15.870242700879167, 33.675313795730894, 80.8310426509145, 60.255277239231624, 78.17387904858052, 8.167637029948754, 45.91512045450918, 11.906174273852123, 85.90235802125804, 15.44950721902028, 5.288042281816698, 12.811821949506552, 28.10703544530623, 76.07915153383972, 30.433143492137123, 74.319929623816, 116.6314098501871, 123.48537245150196, 22.28050544661933, 40.710478372767064, 28.03364359238536, 85.2316350142394, 7.718691623722105, 24.634211650642847, 52.7529986136722, 67.36020202403645, 37.814408537392865, 29.976927102430928, 21.25893426415843, 109.73650838449956, 10.819572779448846, 84.77850598711636, 54.007135156219604, 73.52879790814947, 13.932833822777363, 16.701565666295373, 26.060490561890656, 15.541098349272223, 10.868187291326755, 85.66429416515442, 22.069241402128625, 19.292146698317563, 10.729865386909625, 5.1967970867206175, 32.8880429936045, 51.71535028342802, 6.5533734282100315, 32.12836277884468, 21.464602418572206, 30.92753160848539, 7.572157294674672, 89.55396048514403, 46.644930319820595, 5.3853723319215785, 13.691660911140401, 25.680497364997144, 103.10598540915933, 140.56683459964995, 22.570401300517517, 66.52054709159245, 21.898260549049176, 33.69504509488072, 28.615969101198775, 73.18391608098759, 8.082026039830907, 9.357151808853606, 7.950295259449671, 15.895961139841452, 18.415999667164776, 6.395860922074072, 117.58151972210666, 19.56972594006165, 54.83072031893532, 57.68544545847727, 41.877326279342014, 40.10325392979493, 14.857163750628278, 9.49155488288842, 10.155634646395939, 6.283912593971942, 7.413395393654236, 43.0922200444505, 37.70715256933589, 11.996558758119571, 16.42441651151156, 27.65375166975277, 7.534417746102197, 70.63626498260987, 10.541096382086117, 19.86558584767328, 39.49353097333203, 11.276636349925251, 29.84288916304351, 6.087297480238738, 16.030458882726563, 49.67598997149711, 29.222477683744913, 72.35068921859785, 42.17287769362109, 66.09477247926031, 47.32092129931145, 67.10105632457079, 53.17059617038463, 8.778909897751696, 10.075517868162242, 40.54269088018465, 26.377083356931394, 32.31164197445263, 93.38560462078961, 32.17648668366576, 31.55380683630001, 9.0321353260878, 64.1693909037426, 39.10856480101749, 20.115618400494984, 10.647304431826706, 34.090854695115524, 15.039568070234111, 15.544061617708506, 15.425921860188122, 65.98614885693982, 76.7639552645235, 20.580493444902693, 11.664725323799711, 9.730234575010263, 66.022531912001, 28.002665258190156, 12.354891068405104, 53.15656664134623, 26.039349445393967, 7.669643131044008, 8.428275557152693, 65.65528469494281, 83.99453230893648, 71.96057998428181, 27.44177188729539, 96.09148126772882, 43.52577829579951, 19.705994794589103, 31.933487047229395, 20.428681439502185, 5.957284266644568, 65.37241795430533, 82.88058491845949, 39.59103685661217, 7.171382792893355, 32.997181907622235, 29.700151924093454, 95.83218142421113, 20.69781086636393, 16.3277907445265, 5.345902180705819, 46.677514093248284, 84.15777849624399, 11.09851945796448, 18.81388046211241, 7.893064422630695, 116.84966560163534, 72.15712485851381, 80.2671514651031, 31.085777639422957, 9.79872714829382, 41.16219015898241, 28.93855516271615, 53.83553302555053, 11.139391892462363, 12.061659581425932, 8.389814484185885, 15.94854005765041, 29.21395687730603, 5.456802233430099, 26.097842899613354, 8.091585870772095, 12.588705630146121, 28.0663859353728, 9.814105020680993, 125.73282494966553, 6.115481087175973, 76.5084788109683, 27.307917088316938, 21.388892253900693, 21.292033787285078, 25.35830668373266, 69.58425225845735, 8.74244841165631, 37.77581087104985, 28.57662566624005, 27.892018939515843, 11.971079208249117, 5.209386701333398, 9.800968474872736, 62.72063265337555, 118.18977020749614, 6.461103751274789, 25.510139220251165, 87.00650345509831, 6.145732470332955, 7.377016937578559, 6.042664651865096, 19.804291497249825, 25.825977681058337, 13.034150146633884, 5.493433666606667, 6.377027113467771, 11.255404389728573, 93.54374458134225, 63.030236836391744, 56.46378933706286, 13.609157834964144, 76.24895071849899, 14.001247831240162, 5.290604553150434, 17.878074050497506, 79.15135390213138, 53.565012918206186, 60.992568512237014, 132.25735381338293, 46.78218365065821, 9.792546527071172, 89.8099631197201, 10.069062498727604, 24.478674670279478, 11.140829386721345, 84.84428238063785, 35.82294297701289, 15.281795604256558, 53.342225193667076, 64.37630012105083, 21.974224410373367, 10.829404713423166, 137.52930831568244, 24.974108414168953, 71.08215925342928, 52.81802669916669, 71.58913174524652, 30.03226487569674, 10.631083140029775, 33.50423402250239, 10.785400066082044, 37.81005495155101, 61.24432897002845, 29.598406249724228, 32.67318072831883, 33.648829323872626, 14.866974247580048, 26.566575467272123, 56.99119959873296, 29.833614950332848, 139.53221271970745, 9.06785456482978, 77.78871213419065, 38.460479349824325, 29.673557017338737, 19.717463781494367, 75.62437581639338, 13.75421623090119, 64.94146212461892, 5.750301615000859, 13.608098676291517, 49.71213032823867, 5.036367181383667, 28.70953535882044, 30.446332535286075, 33.30636740603909, 9.854661186109988, 68.23679305641237, 61.91602073278253, 9.843907058465861, 35.99885346644927, 101.53422847868896, 13.59761598675162, 35.1764715144768, 55.260801429478946, 72.1789921039124, 37.973619809018906, 15.419443329835893, 104.45709975405664, 50.73269233530202, 8.77692774999378, 15.68967916315527, 84.31090697834065, 36.099444255073195, 13.224595975342375, 11.864374881194705, 5.391518867901417, 31.52656554007336, 47.450133748595036, 5.338517627648792, 18.57178400662492, 20.662152402332676, 102.20102108438891, 7.903323614750671, 5.664522812844089, 37.30457408559825, 30.354353353027378, 48.96805926783385, 5.858371655208744, 100.16693981857534, 28.17031829746426, 5.45773310382318, 177.07496762536914, 7.646664224371724, 60.082258237987205, 66.09475841731577, 6.689848120851118, 24.97909163445354, 44.84971029532622, 24.307071418542208, 11.137481747663887, 40.64800560859465, 206.21848995242948, 53.361368708948554, 5.774081356114656, 6.407228997512207, 28.0054620050446, 24.03907402329513, 8.907479490699377, 58.90208985194388, 62.90199577967165, 7.086415745317405, 9.005672113300017, 10.429424712141513, 21.595426924917135, 12.248406987231078, 28.64989018222982, 6.152870293955856, 12.767648396594042, 6.854524455037634, 86.84134854773788, 17.826947234541198, 21.106899866334235, 37.03359231888899, 95.45788731426134, 30.60263835059839, 25.922473676321818, 46.474991264437634, 12.370993413132078, 49.32820140823276, 24.12585281416742, 11.132406665580872, 50.07741073509727, 14.776860180058538, 8.194931977755031, 19.909007300550584, 40.452894059676375, 7.788908740884932, 7.409681122551651, 20.38949864418135, 88.59645265758606, 70.87416560810959, 7.170954607476925, 19.023505674742875, 8.456151421772658, 29.680733696834412, 65.19765869302881, 68.76753029698628, 27.843046443104036, 26.823456660587624, 38.95894439080472, 27.819817579229806, 53.55975606232504, 11.590769536682034, 6.434887760434361, 23.74664531451383, 104.74185159809383, 5.315233210940342, 36.110413472410414, 20.4863776788812, 25.27869156632327, 38.500129335595695, 5.506250699916275, 8.155504016565114, 11.581358729429715, 8.534011322268675, 80.65582913179009, 143.78008381869446, 6.877854842402608, 27.051126553602643, 14.07017196461847, 6.096765357138899, 82.35678104350941, 9.241733233547718, 18.16248469076954, 14.22808399109205, 114.08940366793703, 6.0251509067005475, 30.74356247218984, 102.54809614785262, 57.99999897144174, 6.786758126402238, 50.304183470733314, 35.35743890392174, 24.821961251581957, 28.04868755775001, 23.95489379896674, 5.159171455763256, 74.8733185284793, 6.845879357833484, 7.006465862831583, 14.939289832407175, 62.17235835292462, 53.9352553759966, 14.914642239609874, 15.673088421326693, 25.636873760609248, 25.719460600881337, 50.74518300034336, 98.13403877996276, 42.64870810395488, 55.74554310311628, 74.08108189736424, 11.464153444795404, 23.080193608861755, 9.875656285136126, 41.19863132241585, 69.15092781884222, 42.03959782160212, 87.30383321938118, 70.52596566035204, 5.619737794766593, 17.362731666229966, 27.60242616397539, 19.16995959882233, 48.49468574757745, 5.101908877218258, 32.684694181313276, 58.086944570631275, 12.515703773621654, 19.268780609918704, 10.984208591221046, 17.420542394882375, 104.24115121607876, 29.51133667355614, 29.4136031858653, 24.69576610651945, 42.94966333492879, 96.25157424559964, 82.51970113108226, 22.867455284796886, 54.290818619922746, 38.38865564633114, 9.60856640575039, 92.70070308665854, 6.361740623097901, 10.00352897882769, 14.325856829700381, 44.53728812654285, 10.847028820671381, 27.46677409223846, 86.29767612553093, 37.1849508654193, 26.095578608709452, 16.483735057945456, 13.292497990822017, 11.3303872666008, 15.209019915588648, 8.022698312327885, 61.19630415000202, 25.55760562178825, 25.464168561913134, 9.404461156678009, 77.6794311058676, 11.737083454794709, 76.82205572055992, 10.95434773750625, 82.99211146535166, 10.377572182397753, 28.188314754588223, 31.760935432687226, 13.274422781048663, 86.77913760616428, 88.61957713659152, 21.55883070179447, 7.681180125123507, 145.97870441568688, 8.44153505181909, 13.895773727832792, 65.87716835476587, 27.861608017574145, 5.331694902174661, 5.511448819272902, 74.70851998000902, 5.040008426299863, 66.10802388679346, 7.443006955907302, 81.03979327506246, 7.3368275863722445, 7.441001130564966, 5.379107350133373, 17.036300947757784, 16.227279172854686, 24.343895772669498, 54.15598143535725, 49.47862500197765, 76.87043318356899, 29.109951551543336, 46.221814214533445, 12.307940714238676, 53.716542467370445, 6.896591179495113, 27.26805133957636, 25.892306020826155, 27.268386174897827, 62.338887107415914, 24.818943359954154, 6.690151805532153, 72.16590581946306, 25.374398492885334, 90.76006874834198, 7.798273972065476, 98.06098672185495, 29.33689417502042, 30.706201641213873, 13.389968153201053, 6.660209060466339, 6.788664415921894, 6.877413593415637, 9.65109218067607, 14.960082614329659, 91.37170836704654, 115.97212328061894, 54.0279253586546, 88.81220221061585, 32.101985344045474, 46.86066307387547, 21.82949719007174, 50.84250051917903, 12.709984884721369, 26.646695688027197, 51.6374695814738, 9.54057488977075, 13.171701327692084, 5.0394177862364185, 7.588612453452354, 56.48580143555823, 12.795543357603968, 77.34450027665869, 106.98916646501334, 15.302885573496647, 55.443286025269956, 12.782829037629014, 28.393022247703982, 75.194565718089, 16.3570948633922, 69.84249188357057, 83.89599899480987, 104.85353878774598, 17.875715103632977, 93.77684732812082, 29.563208668716587, 22.549767734200458, 8.408040487817326, 14.059022431989494, 63.22449361298689, 76.36926961307393, 7.5992086548011795, 78.55176172432078, 6.0944227951736725, 49.99579943585363, 6.838814798053739, 92.71686765830884, 39.93979716729424, 10.151549740675573, 12.071409342504639, 120.46941825673636, 110.30275810252859, 6.370081170236501, 30.512403963791744, 40.47640503661017, 25.74580101242436, 11.052423571343095, 100.70782717181292, 58.767555257991, 153.85890151979453, 22.793130209463246, 22.077269446906413, 5.230013353328324, 39.7227116091199, 44.32797304659864, 40.80229232982937, 19.80580673785711, 53.787907470631374, 82.95048600325515, 65.7318814763421, 77.60409641789062, 46.48161079534856, 65.1437387884299, 20.212539997069655, 138.52313184351044, 52.089467071553145, 12.560269565477004, 12.277242689639907, 90.7158369826101, 18.11796517197557, 25.852183407349205, 21.079546556940606, 19.347585312528448, 15.085511629475711, 14.710768914755075, 10.939956283721843, 5.532653478467517, 84.74707236059432, 10.215997604176035, 9.715335953707195, 86.81085162371568, 24.732242096193787, 138.8903414350466, 18.54756110443159, 94.23254069116463, 70.88665147320016, 104.72850319552504, 9.838516138198655, 29.956176459647516, 14.698920655764189, 97.18038355761063, 24.32977061105712, 43.70325882390227, 152.64083703302995, 12.620262969783647, 48.562483266553414, 9.532648358759982, 17.162221021356178, 6.167288388135018, 5.279188157960503, 95.8192221195198, 66.1901384364806, 78.21961803166089, 15.192359913412435, 10.700411173251311, 27.57838003119585, 43.47305144425585, 16.739165349809916, 31.5723997409299, 24.529136482410294, 132.4756911881514, 19.02771167792198, 40.22412432622708, 117.08589232437473, 52.52268587823751, 5.836016398411161, 18.60435587605745, 15.80337445128509, 26.40584601858919, 26.27703218488598, 19.669172139660873, 98.88411557944522, 17.79930409375834, 40.92611024982017, 82.71791981209489, 40.06074014107041, 69.11747058647023, 9.594565166631796, 27.50865322001185, 101.15846331835417, 7.70412690603314, 110.49177555845499, 30.121901033380347, 6.896846603999086, 20.092371301506965, 33.639196228808444, 33.0145803382073, 5.836129467041283, 84.41255595513724, 117.37878933890624, 141.3111785291019, 37.791305319211716, 15.987986410376797, 32.28913945720731, 75.5337901019239, 11.857506411530233, 41.8539724213307, 47.314738663842355, 36.86516912819319, 12.572309287365083, 5.653704388315025, 33.015608656974344, 42.62074033790915, 8.203122889327787, 59.60573019067881, 130.67199938563266, 11.115451685414424, 43.20669042648933, 35.54089067453413, 37.21432487534806, 52.706229063869664, 67.5513989170959, 68.17987605441522, 133.52838607518134, 50.36203933628218, 138.2327731712037, 10.718460866631231, 45.931117660314264, 7.56241434147632, 42.218843186691245, 70.92608700879893, 32.199203252827886, 57.96228552864208, 9.899624089376408, 33.458961083698114, 60.606673105162, 50.773970736200994, 41.593629367611, 19.36374714569017, 16.398200191790327, 20.56307078607526, 5.191334721193701, 58.011374827806215, 63.47144206547647, 21.33111947337301, 24.42832097829489, 12.374864645560846, 34.68062276570986, 22.54518327331136, 9.196694939186532, 5.9196221237714965, 20.101342240709922, 21.134814175576498, 122.73166817599126, 76.34682946614414, 72.81464732466408, 7.831966247178425, 141.49591220536973, 24.185175335206743, 8.073713746536765, 63.495311128043454, 15.290045747203246, 78.07089265300532, 36.60563092415504, 33.925804333193575, 84.02642056723234, 43.50960565488254, 33.099763067375804, 78.08735370481402, 152.85834337610046, 6.837604711458433, 12.306858666109372, 65.84097661152146, 79.14209363666973, 40.484580545879275, 99.09557428064836, 82.58045855258419, 86.83322703100062, 24.662340478514633, 85.69599123470279, 22.44130856570151, 51.11730212932918, 102.24284009214743, 32.676973867964335, 85.23401454881292, 30.44185533087699, 33.019110430333136, 24.237515166988736, 14.671871246460228, 31.468531715912402, 34.11334224594391, 25.861882390604862, 39.0677616734694, 47.474342857325496, 7.610176851562535, 21.46989902086468, 31.65142126322126, 31.3320529011636, 5.159390923126371, 82.23811241950503, 14.721196059000675, 44.13591430491178, 43.01435723233669, 20.151714771190328, 33.2758562655497, 34.613207987276816, 57.42020546196503, 75.25414017266557, 21.86803367613442, 5.99991784137223, 81.60455879047444, 26.993534370582992, 13.64795104614945, 32.59272521079663, 62.704062797684244, 90.90463130605089, 98.1689412488446, 81.73799123594151, 12.21053695888473, 25.43623626312952, 73.9146869334651, 26.344059107667096, 7.566629416679354, 58.525172187012174, 15.632480996488415, 12.095974175029408, 66.2230589588838, 43.83156749222177, 81.15677154133749, 18.890256183586832, 16.671635444434862, 20.704654105784954, 13.718357986799706, 37.28835997674643, 9.346516600408698, 21.276520915937585, 23.69414799481839, 13.654144259188831, 65.6159972492708, 93.05849585629059, 10.088947415652989, 5.786899990956335, 34.889878995392486, 104.94800955182842, 41.244575048091605, 6.399956338246179, 7.229369856894686, 27.885888226296153, 15.475757278016843, 82.0521169163349, 50.89369669149225, 14.257379722563039, 29.38057228264339, 18.438861658624557, 88.98713116721291, 20.248517252359903, 42.27569412966495, 30.173789807256135, 112.65235497195175, 41.376780806140054, 42.91782310287605, 23.71597051681957, 76.72946752637736, 12.31861260054439, 29.655850128842374, 61.42674444968281, 28.900189325432034, 24.660659595173815, 28.729286625205646, 17.236505167478263, 12.294680651135003, 29.747428997055344, 100.32650841335088, 25.152020416567243, 21.704160360116997, 5.721379653828883, 22.59763331880462, 79.39119009182245, 37.759775813919184, 41.134063615269355, 75.75065565507155, 25.25605689381764, 7.104174255246266, 13.396528666968466, 48.48505761623598, 31.461685788478853, 27.925519212460202, 18.97471884192687, 27.54416402807712, 14.631746348393676, 73.04193983338386, 17.29417091881796, 102.81891752317688, 11.71933138212406, 8.742405317393692, 24.81900653838123, 72.68865696356762, 30.215117436125265, 15.987080621659466, 32.86201119129627, 7.7287578878972285, 29.841768389864626, 69.33272839495841, 66.8894541131827, 13.901341557575986, 65.11304299677234, 77.13855323503589, 49.77389326303645, 74.6985130400924, 40.42135665285048, 11.986774542332839, 8.82107911024022, 10.390840546692791, 60.694790141944694, 34.77848774016349, 31.17967600969003, 88.99466873922329, 76.31807388366359, 23.965823058651225, 149.2072176016971, 18.506777835241607, 88.54333111063237, 5.48348010976854, 10.37766079064608, 26.628033735205896, 22.913437990453765, 52.36790996950922, 6.395288379462534, 9.840489167725478, 35.4393217285775, 42.210013394080235, 48.1481740376236, 5.990038339911791, 19.3897133611565, 8.609137717860294, 21.087344135505433, 10.996028159323652, 53.01100604830758, 59.075918649153735, 8.27171455098959, 5.190386359226883, 55.39559847683676, 9.829127516351926, 5.516354013112337, 86.57064286192214, 11.540788343131759, 69.42354921744925, 46.49320080532952, 31.191712553796783, 35.813046672963026, 67.90490591182132, 61.445224428649425, 18.693556650901346, 12.476659021991672, 16.955743549712942, 28.27569295026923, 45.478737069834395, 29.384591890652818, 26.168371323268833, 36.03812975271932, 13.765001251056843, 9.231548496759098, 57.63160821578927, 92.60946430187688, 187.55833744156598, 52.22516572987413, 9.978425443680432, 15.386336397956281, 42.04910037711554, 34.788553765030116, 69.21774979524625, 76.96307726868488, 30.252757337137663, 35.1372847862126, 26.80299120814034, 10.660782992847869, 7.390708355621541, 21.039410122456704, 97.86458266124481, 22.832218436415687, 52.55207389236594, 17.42692883864123, 45.96957576501201, 15.667233439440116, 17.203515181066425, 38.7711129993001, 5.900797125672858, 16.61649855580193, 32.43913582585111, 117.15602415653927, 10.356330938219806, 59.93078393899508, 49.23655075778057, 8.105066884236248, 58.29669265984812, 54.69815069148869, 70.38767317878086, 102.24931216319376, 58.485415079551785, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4533600.581332714, 4614651.718573868, 4702012.152324141, 5054759.958855549, 5056873.935883439, 5057073.4375, 5064500.711837092, 5076631.7316711005, 5170621.966160163, 5173860.3742344435, 5262629.922011983, 5264213.4925048845, 5267462.953456312, 5271107.489044412, 5323020.061105629, 5324049.254030731, 5331996.677620477, 5367093.767536037, 5368182.09261791, 5370904.265812066, 5371243.792853056, 5371613.233980978, 5371615.915884152, 5372556.425656875, 5372564.024575139, 5372587.5, 5372748.395696257, 5373050.802292735, 5375807.400277732, 5386651.148788081, 5405810.9375, 5405811.484184547, 5405813.013988767, 5406801.646962966, 5407859.502570552, 5407967.949851286, 5408767.993721453, 5409661.685013525, 5409676.5625, 5409781.119044104, 5410664.0625, 5410681.25, 5410932.580599679, 5412712.5, 5414723.884321621, 5414733.045364706, 5415214.189686784, 5421020.21360754, 5422108.605866689, 5424646.288574569, 5440014.0625, 5441292.1875, 5441407.8125, 5442609.759370593, 5443587.280319009, 5443814.262391053, 5443851.5625, 5444007.787194037, 5444209.056118262, 5446673.745816909, 5448364.555539967, 5448816.174821295, 5448877.40295788, 5448993.75, 5449198.4375, 5449252.601201148, 5449598.4375, 5449831.043495982, 5450026.087792052, 5450389.0625, 5466918.75, 5467891.89504626, 5469059.771043005, 5472794.546371295, 5473751.7113912245, 5474027.0998734385, 5491785.9375, 5494932.368378949, 5496414.871895225, 5501084.104635229, 5501234.11296575, 5501621.307997572, 5501933.396543491, 5501970.722687863, 5507290.625, 5508940.122138476, 5509404.495689984, 5509546.788241903, 5518134.375, 5551415.766454306, 5551637.153003738, 5552176.190779094, 5552185.344739627, 5552626.5625, 5552791.474508541, 5555561.480048197, 7130850.0, 7255927.666478827, 7257976.142201145, 7259604.071641453, 7260022.542804809, 7282812.092066751, 7282812.530295535, 7284060.242412677, 7285782.9740119055, 7286455.374120263, 7286691.579740602, 7289092.1875, 7311908.657846592, 7312044.925057952, 7313219.3514877735, 7340510.9375, 7340826.5625, 7366353.102693515, 7366801.746019865, 7367035.21171343, 7367068.881157324, 7367093.192730217, 7367740.625, 7367808.025884875, 7367821.954455754, 7368973.778830126, 7369159.329407183, 7369346.680628366, 7369637.5, 7369654.276723467, 7370093.069750638, 7370113.0404885365, 7370240.718235895, 7370282.154753807, 7370348.4297868125, 7370522.502222253, 7370560.9375, 7370879.411078038, 7371057.033542678, 7371081.25, 7375960.9375, 7397700.199628317, 7398403.125, 7400528.767989777, 7400907.077831285, 7401035.140928326, 7402132.8125, 7405993.6311069345, 7406337.5, 7425038.714130671, 7437485.9375, 7439160.9375, 7441104.311013412, 7443021.875, 7444432.167996312, 7445301.580191642, 7452771.544257543, 7456816.530203581, 7458607.837991136, 7459470.462087509, 7461343.072178145, 7461385.9375, 7461634.375, 7462133.778375818, 7462742.185694798, 7463531.686802403, 7463718.947189216, 7463996.848064132, 7464316.2899574125, 7465806.064792916, 7472096.2251766175, 7472190.804943562, 7474026.821174438, 7476034.375, 7476067.055437353, 7476183.756789536, 7476826.895465465, 7476981.25, 7477117.1875, 7477252.425020563, 7477531.25, 7477564.385438112, 7477686.140535298, 7477795.3125, 7477809.198741533, 7477891.760355158, 7478231.436601012, 7478393.203416325, 7478579.6875, 7478585.61768538, 7478747.853900815, 7478764.384160354, 7478815.740705482, 7478899.570240237, 7478992.319987098, 7479034.356246244, 7479039.806717399, 7479161.673529665, 7479206.25, 7479229.6875, 7479403.140178393, 7479446.231440678, 7479513.0053981785, 7479625.0, 7479631.25, 7479635.9375, 7479681.257462917, 7479727.087777138, 7480186.127750807, 7480212.909591, 7480226.5625, 7480245.196326395, 7480275.518923971, 7480537.112121726, 7480855.4690975305, 7480942.163912128, 7480995.833063413, 7481074.5342093585, 7481545.57175695, 7481600.0, 7481661.751564687, 7482106.387348454, 7484345.711439639, 7485813.878726546, 7487132.8125, 7508800.772866417, 7511843.75, 7512648.2299580695, 7512921.394071594, 7520355.167460218, 7534833.045024907, 7544920.820113827, 7544978.540552323, 7545271.158116133, 7545331.082192256, 7545445.138791847, 7545570.3125, 7545836.474059491, 7546268.077998778, 7546596.426458315, 7546870.566213264, 7546967.034273791, 7547083.764843809, 7560006.967605688, 7573593.010006068, 7573604.767689151, 7573646.875, 7573670.3125, 7574814.0625, 7574841.787715979, 7574858.350734725, 7574859.104311866, 7574871.859365178, 7575164.279107836, 7575428.125, 7575442.1875, 7575550.230333882, 7575574.788582442, 7575777.951828106, 7576098.936778937, 7576277.493032713, 7576819.51013872, 7577299.754927745, 7577923.44587923, 7578261.435141512, 7578537.5, 7578596.961502468, 7579070.3125, 7579459.375, 7580992.274219973, 7582456.050387825, 7582554.6875, 7584254.904294129, 7584854.210439497, 7592425.152395214, 7595057.8125, 7611815.564086987, 7611865.282208581, 7612109.751301499, 7612154.456878653, 7612553.293000838, 7612704.40566823, 7612987.247583755, 7612990.625, 7612999.523235025, 7613420.292806413, 7613456.604553853, 7613655.003914366, 7613900.0, 7613984.375, 7614009.045952097, 7614026.5625, 7614429.6875, 7614605.2206134265, 7614652.448379404, 7614812.899865724, 7615198.086729319, 7615370.3125, 7615511.600618446, 7615638.662352463, 7616107.8125, 7616113.7530366285, 7616454.6875, 7619582.220487826, 7630975.0, 7639009.93515339, 7639359.375, 7639540.625, 7639552.112212269, 7639985.9375, 7640439.890735721, 7641263.658750196, 7642495.3125, 7642946.875, 7643004.40051655, 7643026.5625, 7643057.932484314, 7643326.5625, 7643623.163321054, 7643800.824866443, 7644003.308355737, 7644170.3125, 7644181.25, 7644194.949075019, 7644245.737677547, 7644423.2543667415, 7644653.125, 7644851.5625, 7645026.462821502, 7645505.135135091, 7645555.311442958, 7645949.588873143, 7646089.822391509, 7646880.5652662115, 7647318.75, 7648392.1875, 7656310.9375, 7657486.519954386, 7658454.508594686, 7658647.008123988, 7659079.593188779, 7662148.4375, 7662193.868492853, 7663485.35992381, 7663681.25, 7663874.619500375, 7664159.165440858, 7664935.786969955, 7665677.867339769, 7666299.16107939, 7666374.134338231, 7666494.69440371, 7666900.0, 7669482.2582983645, 7669669.783393214, 7669719.050550677, 7669729.903085469, 7670546.327149686, 7670632.8125, 7670713.805985256, 7670798.3025194695, 7670926.150399598, 7671121.377063084, 7671140.135196949, 7671481.598222197, 7671963.651949804, 7672211.538142364, 7672255.532610023, 7672766.064426353, 7673311.382124411, 7673500.595110963, 7673941.610758146, 7673943.75, 7674140.179960391, 7674254.425621526, 7674970.165411968, 7675537.5, 7676875.672332426, 7676932.276546538, 7677850.066784676, 7678323.4405047465, 7678384.131128327, 7679312.456121103, 7679438.885081177, 7680158.700048805, 7680434.375, 7680772.360745862, 7681329.118640543, 7684074.4904714385, 7686915.352464188, 7691037.435288977, 7691907.997528757, 7691914.83580752, 7692164.369968065, 7692368.75, 7692435.9375, 7692479.6875, 7692662.464597799, 7692673.3451818675, 7692925.807918398, 7693029.650856124, 7693040.625, 7693056.527342704, 7693059.033697785, 7693098.636058878, 7693275.2152408585, 7693425.762410693, 7693662.5, 7693832.564098711, 7693834.185890362, 7693889.757550759, 7694157.247007078, 7694165.368631816, 7694237.772059209, 7694242.627820295, 7694318.75, 7694425.758256223, 7694473.984495546, 7694582.733334029, 7695049.750930375, 7695123.520425079, 7695128.828904043, 7695203.017012993, 7695253.773192486, 7695343.549324702, 7695471.875, 7695555.622113337, 7695971.690164323, 7695981.25, 7696023.4375, 7696036.052860982, 7696100.0, 7696203.239397824, 7696324.779476644, 7696436.87809668, 7696936.348370539, 7696991.919708124, 7697181.25, 7697276.961558601, 7697852.66873726, 7698182.8119175425, 7698511.6247935705, 7698775.0, 7699337.492933176, 7699439.242052186, 7699720.147083474, 7699777.964933839, 7699916.208811402, 7700188.854550957, 7702006.25, 7702190.432298113, 7703112.5, 7703181.455087928, 7703185.462733316, 7703692.767920578, 7703739.0625, 7703744.29981576, 7703975.0, 7703993.443110658, 7704022.414886819, 7704028.227461113, 7704155.204664016, 7706160.889115517, 7710974.230643363, 7726484.728787348, 7734209.549632553, 7735809.62908538, 7736240.625, 7739105.424807929, 7740017.993807916, 7740123.343712607, 7740373.964672589, 7740687.5, 7740708.943330985, 7740823.4375, 7741199.37419887, 7741301.258299717, 7742012.1415230995, 7742231.25, 7742403.667326359, 7742473.4375, 7742532.17172271, 7742990.935555887, 7743046.875, 7743056.963369591, 7743058.513117285, 7743060.766021605, 7743092.1875, 7743332.625189613, 7743410.088591653, 7743943.182753278, 7743950.0, 7743973.85697145, 7744144.103250378, 7744158.17158411, 7744175.125910978, 7744348.505957693, 7744379.152780967, 7744382.8125, 7744497.6512450995, 7744533.213749541, 7744609.460156739, 7744715.954975923, 7744850.357759021, 7745023.032585389, 7745260.8236849485, 7745321.31134578, 7745355.710496403, 7745456.232768617, 7745673.980685449, 7745693.231042031, 7745951.5625, 7746033.179022608, 7746040.13156402, 7746109.585477675, 7746112.82005856, 7746154.9694663575, 7746216.883125668, 7746762.760521893, 7746916.667523701, 7746945.010983733, 7747410.483584801, 7762279.666180788, 7765928.033683427, 7769881.25, 7807560.471636272, 7812939.0625, 7828096.073013909, 7828355.777999672, 7828424.483995004, 7828655.2609110875, 7828792.488360346, 7828816.932559221, 7828895.3125, 7828914.0625, 7828983.474170684, 7829041.654181289, 7829077.8105710335, 7829358.455783656, 7829359.889897601, 7829389.694463567, 7829606.183122504, 7829679.538498887, 7829706.183141292, 7830047.893895959, 7830235.716764415, 7830301.183618018, 7830472.80119178, 7830620.129800189, 7830680.197063995, 7834900.508866502, 7835600.123626949, 7836123.4375, 7836132.543257865, 7836195.511975592, 7836307.272087162, 7836364.187221875, 7836388.044979409, 7836505.042838987, 7836517.192364376, 7836621.875, 7836668.75, 7836689.0625, 7836699.855453091, 7836759.121996558, 7836798.4375, 7836799.533073716, 7836804.6875, 7836849.258509409, 7836853.773491259, 7836860.457113752, 7836878.362434768, 7836886.942659926, 7836902.998451753, 7836964.021881552, 7837046.875, 7837068.044150875, 7837092.610497565, 7837121.875, 7837157.90418698, 7837220.3125, 7837255.538900093, 7837275.73638812, 7837285.9375, 7837308.1401591, 7837358.811505934, 7837449.370308512, 7837476.5625, 7837484.977989375, 7837498.501860904, 7837532.8125, 7837635.5512986295, 7837645.535336665, 7837712.247454031, 7837725.0, 7837734.09149459, 7837742.176346575, 7837876.555104292, 7837882.87309006, 7837896.305376216, 7837898.803363984, 7837901.526022631, 7837907.8125, 7837927.395651505, 7838002.0925916275, 7838014.694807029, 7838107.075056271, 7838122.648119529, 7838142.1875, 7838187.5, 7838235.416300348, 7838236.3618717445, 7838253.808524964, 7838278.204490908, 7838316.92329482, 7838332.433642429, 7838341.744131938, 7838343.2001858605, 7838363.774749525, 7838383.998949177, 7838388.453620533, 7838393.196576945, 7838398.4375, 7838411.203472306, 7838423.219394241, 7838428.925108094, 7838463.069595373, 7838470.357877855, 7838471.876560698, 7838542.136355324, 7838582.8125, 7838589.819357597, 7838635.003973913, 7838685.9375, 7838716.266298286, 7838729.5359462015, 7838738.520019224, 7838753.941681751, 7838815.662274533, 7838818.688116088, 7838873.3139679255, 7838923.42869745, 7838939.0625, 7838944.63877131, 7839034.796650008, 7839046.529517459, 7839048.210640467, 7839060.5599323185, 7839085.08102197, 7839126.5625, 7839256.25, 7839328.125, 7839420.856962897, 7839483.831284759, 7839668.68486403, 7840021.875, 7849980.924412094, 7850760.9375, 7851655.175755926, 7851664.845342715, 7852307.8125, 7857334.603785678, 7858842.66925114, 7858925.728562989, 7858985.547420649, 7859443.75, 7859707.8125, 7859793.75, 7860201.656454885, 7860245.020774805, 7860553.075303373, 7860587.5, 7860730.090777309, 7860803.125, 7860913.4930510195, 7860921.875, 7861050.7738827, 7861104.6875, 7861228.778809238, 7861334.0219797855, 7861336.230943744, 7861372.589287072, 7861522.08412507, 7861531.095155106, 7861544.656440977, 7861694.607909901, 7861820.3125, 7861866.215619889, 7861875.0, 7862095.3125, 7862114.0625, 7862227.669381659, 7862228.420652937, 7862231.73132129, 7862403.749795174, 7862464.333087376, 7862587.5, 7862637.240925442, 7862708.445613308, 7862760.284600342, 7862909.339885105, 7863099.848656473, 7863258.107427184, 7863440.252704373, 7863519.400597411, 7863560.640636287, 7863953.125, 7863992.437396584, 7864016.218135164, 7864118.28915033, 7864200.421597983, 7864357.730321984, 7864378.125, 7864417.175639943, 7864483.941301086, 7864513.195309885, 7864515.500229114, 7864751.5625, 7864904.52628043, 7864939.646404477, 7864955.824005034, 7865159.367145383, 7865230.784229298, 7865301.5625, 7865435.9375, 7865684.630762049, 7865719.288999104, 7865913.999869675, 7865951.5625, 7865964.0625, 7866020.009896049, 7866030.971387973, 7866054.6875, 7866070.198201175, 7866078.834804322, 7866101.5625, 7866117.804495838, 7866159.375, 7866192.79087041, 7866286.887582087, 7866339.0625, 7866418.482721371, 7866525.0, 7866561.756295846, 7866570.6485245135, 7866574.401425431, 7866626.081356338, 7866691.729047906, 7866714.0625, 7866755.733607429, 7866766.186453445, 7866835.049101078, 7866875.0, 7866888.916845761, 7866902.961271364, 7866948.207490584, 7866964.91144362, 7866965.0883174725, 7866982.8125, 7867023.082921007, 7867104.6875, 7867128.716020551, 7867234.185412758, 7867288.663355424, 7867315.199545518, 7867385.9375, 7867518.838532965, 7867573.4375, 7867641.152555777, 7867646.551926116, 7867661.519225684, 7867679.6875, 7867781.776939428, 7867830.861519991, 7867917.364671723, 7867920.672659277, 7867955.3302811375, 7868070.3125, 7868119.527885217, 7868135.9375, 7868161.557433477, 7868169.711964152, 7868171.708627116, 7868292.68519586, 7868353.8934575375, 7868368.088243942, 7868370.3125, 7868391.974231327, 7868393.75, 7868428.125, 7868504.6875, 7868551.5625, 7868570.049675634, 7868584.302411688, 7868592.853365545, 7868595.6260604, 7868691.173956742, 7868714.854940993, 7868799.688555586, 7868892.206645112, 7868951.060171039, 7869019.956972238, 7869036.595743789, 7869048.179271407, 7869090.625, 7869220.253471945, 7869290.625, 7869296.875, 7869338.416627524, 7869339.0625, 7869499.014128097, 7869529.6875, 7869608.53396746, 7869723.976294446, 7869730.357080915, 7869779.477318304, 7870010.855031986, 7870280.863473287, 7870289.0625, 7870437.5, 7870723.1652792, 7870802.527850535, 7871129.472466176, 7871192.784994705, 7871363.27438834, 7871437.5, 7872104.566598, 7872963.960136457, 7873093.741291111, 7875304.857695494, 7875355.336326903, 7875384.788565539, 7876080.618274842, 7876265.625, 7876983.567413253, 7877206.640252805, 7878636.917154813, 7884177.762254309, 7885796.819382042, 7890571.892820023, 7893080.7280113725, 7893090.320556534, 7894179.809356616, 7894190.625, 7894445.0557896495, 7895328.902931205, 7895898.064675188, 7896430.322699462, 7896532.981232115, 7896611.213605003, 7896613.48317553, 7898920.707724467, 7900673.404381435, 7903415.758443775, 7905244.325079228, 7915617.1875, 7916904.495633369, 7922043.75, 7925705.669616626, 7926551.5625, 7928649.30820541, 7929959.375, 7929970.3125, 7931054.6875, 7932017.564917438, 7932065.625, 7932659.072273009, 7933384.579031703, 7933775.648232523, 7950877.367881125, 7950932.5802383125, 7951867.1875, 7951877.893045023, 7952109.375, 7953300.494999093, 7953370.949616082, 7953923.4375, 7954102.696873491, 7954156.05231612, 7954186.846917654, 7954328.352320523, 7954430.854027052, 7954437.5, 7954664.0625, 7954878.125, 7955403.125, 7955515.434365863, 7956154.621363581, 8037551.088034987, 8052556.25, 8052994.401948865, 8053178.093986538, 8053513.266611659, 8070882.376266819, 8074173.353784807, 8074471.838569336, 8074634.880178571, 8075686.362925397, 8076114.410672115, 8076567.960300915, 8076770.336026593, 8077624.541189592, 8078012.5, 8078478.374699695, 8078620.3125, 8078626.896703979, 8078638.676725512, 8080440.625, 8082812.450761894, 8083466.884922489, 8084320.673616316, 8085417.480636754, 8085460.9375, 8086362.719633268, 8086633.914512227, 8086781.737889378, 8086949.327785857, 8087401.033700542, 8087664.0625, 8087775.532224303, 8087871.091720129, 8088300.567996274, 8090413.400844699, 8090942.21029665, 8091057.622276073, 8091489.762546085, 8091964.753075723, 8092139.558818692, 8093705.710568043, 8096899.999831993, 8111762.690911484, 8112840.053239405, 8112905.638256362, 8114334.921385314, 8115356.208297321, 8115664.0625, 8117470.3125, 8117603.688609441, 8117791.222273659, 8118152.12641857, 8118263.520839604, 8118763.976590371, 8119875.0, 8123174.02423379, 8124448.409288131, 8125326.043029559, 8126371.875, 8127634.9102961905, 8128138.712973346, 8128575.0, 8129339.311623819, 8129710.748974122, 8130040.625, 8130657.568049319, 8132087.207606269, 8132310.214222402, 8132312.422315576, 8132363.522659461, 8132442.578423724, 8132452.006608352, 8132465.612284058, 8132470.3125, 8132482.8125, 8132517.055808375, 8132534.686424372, 8132548.911342506, 8132570.191997605, 8132581.25, 8132584.375, 8132586.611113737, 8132586.808837332, 8132588.177450484, 8132595.424507472, 8132614.317712037, 8132616.841792903, 8132618.75, 8132671.875, 8132695.3125, 8132707.718854333, 8132731.15648655, 8132734.054222224, 8132752.49649991, 8132772.890784372, 8132777.068262228, 8132791.812021125, 8132800.0, 8132805.21577283, 8132821.875, 8132828.303207229, 8132833.301634489, 8132840.625, 8132849.545722507, 8132862.879512318, 8132881.25, 8132885.9375, 8132890.06826198, 8132896.875, 8132901.5625, 8132904.327729804, 8132904.6875, 8132904.6875, 8132918.75, 8132921.875, 8132941.027085772, ...], [5.858283604494968, 9.466953703263748, 97.69483545419452, 14.760248214037215, 17.255620120399076, 87.46411865868899, 7.3220495227525815, 11.97446035355754, 73.93425277169953, 6.198563518837759, 15.917631384058403, 7.409317647863509, 86.30627144042775, 23.455682517942247, 36.198312832288366, 61.64830159678388, 25.784012118481108, 15.008772506809228, 19.548297049869895, 6.045318343404709, 5.463608850856272, 17.90088537677982, 9.590100611611199, 5.347977047790089, 11.068940754759838, 29.54802871881611, 7.588187637695093, 32.929646528710805, 9.005582071433174, 22.39933663131464, 60.89471977449219, 7.272976938228096, 17.34449763471777, 32.09145758491447, 7.15539477607023, 12.572880625864983, 11.528129139400319, 15.870242700879167, 33.675313795730894, 80.8310426509145, 60.255277239231624, 78.17387904858052, 8.167637029948754, 45.91512045450918, 11.906174273852123, 85.90235802125804, 15.44950721902028, 5.288042281816698, 12.811821949506552, 28.10703544530623, 76.07915153383972, 30.433143492137123, 74.319929623816, 116.6314098501871, 123.48537245150196, 22.28050544661933, 40.710478372767064, 28.03364359238536, 85.2316350142394, 7.718691623722105, 24.634211650642847, 52.7529986136722, 67.36020202403645, 37.814408537392865, 29.976927102430928, 21.25893426415843, 109.73650838449956, 10.819572779448846, 84.77850598711636, 54.007135156219604, 73.52879790814947, 13.932833822777363, 16.701565666295373, 26.060490561890656, 15.541098349272223, 10.868187291326755, 85.66429416515442, 22.069241402128625, 19.292146698317563, 10.729865386909625, 5.1967970867206175, 32.8880429936045, 51.71535028342802, 6.5533734282100315, 32.12836277884468, 21.464602418572206, 30.92753160848539, 7.572157294674672, 89.55396048514403, 46.644930319820595, 5.3853723319215785, 13.691660911140401, 25.680497364997144, 103.10598540915933, 140.56683459964995, 22.570401300517517, 66.52054709159245, 21.898260549049176, 33.69504509488072, 28.615969101198775, 73.18391608098759, 8.082026039830907, 9.357151808853606, 7.950295259449671, 15.895961139841452, 18.415999667164776, 6.395860922074072, 117.58151972210666, 19.56972594006165, 54.83072031893532, 57.68544545847727, 41.877326279342014, 40.10325392979493, 14.857163750628278, 9.49155488288842, 10.155634646395939, 6.283912593971942, 7.413395393654236, 43.0922200444505, 37.70715256933589, 11.996558758119571, 16.42441651151156, 27.65375166975277, 7.534417746102197, 70.63626498260987, 10.541096382086117, 19.86558584767328, 39.49353097333203, 11.276636349925251, 29.84288916304351, 6.087297480238738, 16.030458882726563, 49.67598997149711, 29.222477683744913, 72.35068921859785, 42.17287769362109, 66.09477247926031, 47.32092129931145, 67.10105632457079, 53.17059617038463, 8.778909897751696, 10.075517868162242, 40.54269088018465, 26.377083356931394, 32.31164197445263, 93.38560462078961, 32.17648668366576, 31.55380683630001, 9.0321353260878, 64.1693909037426, 39.10856480101749, 20.115618400494984, 10.647304431826706, 34.090854695115524, 15.039568070234111, 15.544061617708506, 15.425921860188122, 65.98614885693982, 76.7639552645235, 20.580493444902693, 11.664725323799711, 9.730234575010263, 66.022531912001, 28.002665258190156, 12.354891068405104, 53.15656664134623, 26.039349445393967, 7.669643131044008, 8.428275557152693, 65.65528469494281, 83.99453230893648, 71.96057998428181, 27.44177188729539, 96.09148126772882, 43.52577829579951, 19.705994794589103, 31.933487047229395, 20.428681439502185, 5.957284266644568, 65.37241795430533, 82.88058491845949, 39.59103685661217, 7.171382792893355, 32.997181907622235, 29.700151924093454, 95.83218142421113, 20.69781086636393, 16.3277907445265, 5.345902180705819, 46.677514093248284, 84.15777849624399, 11.09851945796448, 18.81388046211241, 7.893064422630695, 116.84966560163534, 72.15712485851381, 80.2671514651031, 31.085777639422957, 9.79872714829382, 41.16219015898241, 28.93855516271615, 53.83553302555053, 11.139391892462363, 12.061659581425932, 8.389814484185885, 15.94854005765041, 29.21395687730603, 5.456802233430099, 26.097842899613354, 8.091585870772095, 12.588705630146121, 28.0663859353728, 9.814105020680993, 125.73282494966553, 6.115481087175973, 76.5084788109683, 27.307917088316938, 21.388892253900693, 21.292033787285078, 25.35830668373266, 69.58425225845735, 8.74244841165631, 37.77581087104985, 28.57662566624005, 27.892018939515843, 11.971079208249117, 5.209386701333398, 9.800968474872736, 62.72063265337555, 118.18977020749614, 6.461103751274789, 25.510139220251165, 87.00650345509831, 6.145732470332955, 7.377016937578559, 6.042664651865096, 19.804291497249825, 25.825977681058337, 13.034150146633884, 5.493433666606667, 6.377027113467771, 11.255404389728573, 93.54374458134225, 63.030236836391744, 56.46378933706286, 13.609157834964144, 76.24895071849899, 14.001247831240162, 5.290604553150434, 17.878074050497506, 79.15135390213138, 53.565012918206186, 60.992568512237014, 132.25735381338293, 46.78218365065821, 9.792546527071172, 89.8099631197201, 10.069062498727604, 24.478674670279478, 11.140829386721345, 84.84428238063785, 35.82294297701289, 15.281795604256558, 53.342225193667076, 64.37630012105083, 21.974224410373367, 10.829404713423166, 137.52930831568244, 24.974108414168953, 71.08215925342928, 52.81802669916669, 71.58913174524652, 30.03226487569674, 10.631083140029775, 33.50423402250239, 10.785400066082044, 37.81005495155101, 61.24432897002845, 29.598406249724228, 32.67318072831883, 33.648829323872626, 14.866974247580048, 26.566575467272123, 56.99119959873296, 29.833614950332848, 139.53221271970745, 9.06785456482978, 77.78871213419065, 38.460479349824325, 29.673557017338737, 19.717463781494367, 75.62437581639338, 13.75421623090119, 64.94146212461892, 5.750301615000859, 13.608098676291517, 49.71213032823867, 5.036367181383667, 28.70953535882044, 30.446332535286075, 33.30636740603909, 9.854661186109988, 68.23679305641237, 61.91602073278253, 9.843907058465861, 35.99885346644927, 101.53422847868896, 13.59761598675162, 35.1764715144768, 55.260801429478946, 72.1789921039124, 37.973619809018906, 15.419443329835893, 104.45709975405664, 50.73269233530202, 8.77692774999378, 15.68967916315527, 84.31090697834065, 36.099444255073195, 13.224595975342375, 11.864374881194705, 5.391518867901417, 31.52656554007336, 47.450133748595036, 5.338517627648792, 18.57178400662492, 20.662152402332676, 102.20102108438891, 7.903323614750671, 5.664522812844089, 37.30457408559825, 30.354353353027378, 48.96805926783385, 5.858371655208744, 100.16693981857534, 28.17031829746426, 5.45773310382318, 177.07496762536914, 7.646664224371724, 60.082258237987205, 66.09475841731577, 6.689848120851118, 24.97909163445354, 44.84971029532622, 24.307071418542208, 11.137481747663887, 40.64800560859465, 206.21848995242948, 53.361368708948554, 5.774081356114656, 6.407228997512207, 28.0054620050446, 24.03907402329513, 8.907479490699377, 58.90208985194388, 62.90199577967165, 7.086415745317405, 9.005672113300017, 10.429424712141513, 21.595426924917135, 12.248406987231078, 28.64989018222982, 6.152870293955856, 12.767648396594042, 6.854524455037634, 86.84134854773788, 17.826947234541198, 21.106899866334235, 37.03359231888899, 95.45788731426134, 30.60263835059839, 25.922473676321818, 46.474991264437634, 12.370993413132078, 49.32820140823276, 24.12585281416742, 11.132406665580872, 50.07741073509727, 14.776860180058538, 8.194931977755031, 19.909007300550584, 40.452894059676375, 7.788908740884932, 7.409681122551651, 20.38949864418135, 88.59645265758606, 70.87416560810959, 7.170954607476925, 19.023505674742875, 8.456151421772658, 29.680733696834412, 65.19765869302881, 68.76753029698628, 27.843046443104036, 26.823456660587624, 38.95894439080472, 27.819817579229806, 53.55975606232504, 11.590769536682034, 6.434887760434361, 23.74664531451383, 104.74185159809383, 5.315233210940342, 36.110413472410414, 20.4863776788812, 25.27869156632327, 38.500129335595695, 5.506250699916275, 8.155504016565114, 11.581358729429715, 8.534011322268675, 80.65582913179009, 143.78008381869446, 6.877854842402608, 27.051126553602643, 14.07017196461847, 6.096765357138899, 82.35678104350941, 9.241733233547718, 18.16248469076954, 14.22808399109205, 114.08940366793703, 6.0251509067005475, 30.74356247218984, 102.54809614785262, 57.99999897144174, 6.786758126402238, 50.304183470733314, 35.35743890392174, 24.821961251581957, 28.04868755775001, 23.95489379896674, 5.159171455763256, 74.8733185284793, 6.845879357833484, 7.006465862831583, 14.939289832407175, 62.17235835292462, 53.9352553759966, 14.914642239609874, 15.673088421326693, 25.636873760609248, 25.719460600881337, 50.74518300034336, 98.13403877996276, 42.64870810395488, 55.74554310311628, 74.08108189736424, 11.464153444795404, 23.080193608861755, 9.875656285136126, 41.19863132241585, 69.15092781884222, 42.03959782160212, 87.30383321938118, 70.52596566035204, 5.619737794766593, 17.362731666229966, 27.60242616397539, 19.16995959882233, 48.49468574757745, 5.101908877218258, 32.684694181313276, 58.086944570631275, 12.515703773621654, 19.268780609918704, 10.984208591221046, 17.420542394882375, 104.24115121607876, 29.51133667355614, 29.4136031858653, 24.69576610651945, 42.94966333492879, 96.25157424559964, 82.51970113108226, 22.867455284796886, 54.290818619922746, 38.38865564633114, 9.60856640575039, 92.70070308665854, 6.361740623097901, 10.00352897882769, 14.325856829700381, 44.53728812654285, 10.847028820671381, 27.46677409223846, 86.29767612553093, 37.1849508654193, 26.095578608709452, 16.483735057945456, 13.292497990822017, 11.3303872666008, 15.209019915588648, 8.022698312327885, 61.19630415000202, 25.55760562178825, 25.464168561913134, 9.404461156678009, 77.6794311058676, 11.737083454794709, 76.82205572055992, 10.95434773750625, 82.99211146535166, 10.377572182397753, 28.188314754588223, 31.760935432687226, 13.274422781048663, 86.77913760616428, 88.61957713659152, 21.55883070179447, 7.681180125123507, 145.97870441568688, 8.44153505181909, 13.895773727832792, 65.87716835476587, 27.861608017574145, 5.331694902174661, 5.511448819272902, 74.70851998000902, 5.040008426299863, 66.10802388679346, 7.443006955907302, 81.03979327506246, 7.3368275863722445, 7.441001130564966, 5.379107350133373, 17.036300947757784, 16.227279172854686, 24.343895772669498, 54.15598143535725, 49.47862500197765, 76.87043318356899, 29.109951551543336, 46.221814214533445, 12.307940714238676, 53.716542467370445, 6.896591179495113, 27.26805133957636, 25.892306020826155, 27.268386174897827, 62.338887107415914, 24.818943359954154, 6.690151805532153, 72.16590581946306, 25.374398492885334, 90.76006874834198, 7.798273972065476, 98.06098672185495, 29.33689417502042, 30.706201641213873, 13.389968153201053, 6.660209060466339, 6.788664415921894, 6.877413593415637, 9.65109218067607, 14.960082614329659, 91.37170836704654, 115.97212328061894, 54.0279253586546, 88.81220221061585, 32.101985344045474, 46.86066307387547, 21.82949719007174, 50.84250051917903, 12.709984884721369, 26.646695688027197, 51.6374695814738, 9.54057488977075, 13.171701327692084, 5.0394177862364185, 7.588612453452354, 56.48580143555823, 12.795543357603968, 77.34450027665869, 106.98916646501334, 15.302885573496647, 55.443286025269956, 12.782829037629014, 28.393022247703982, 75.194565718089, 16.3570948633922, 69.84249188357057, 83.89599899480987, 104.85353878774598, 17.875715103632977, 93.77684732812082, 29.563208668716587, 22.549767734200458, 8.408040487817326, 14.059022431989494, 63.22449361298689, 76.36926961307393, 7.5992086548011795, 78.55176172432078, 6.0944227951736725, 49.99579943585363, 6.838814798053739, 92.71686765830884, 39.93979716729424, 10.151549740675573, 12.071409342504639, 120.46941825673636, 110.30275810252859, 6.370081170236501, 30.512403963791744, 40.47640503661017, 25.74580101242436, 11.052423571343095, 100.70782717181292, 58.767555257991, 153.85890151979453, 22.793130209463246, 22.077269446906413, 5.230013353328324, 39.7227116091199, 44.32797304659864, 40.80229232982937, 19.80580673785711, 53.787907470631374, 82.95048600325515, 65.7318814763421, 77.60409641789062, 46.48161079534856, 65.1437387884299, 20.212539997069655, 138.52313184351044, 52.089467071553145, 12.560269565477004, 12.277242689639907, 90.7158369826101, 18.11796517197557, 25.852183407349205, 21.079546556940606, 19.347585312528448, 15.085511629475711, 14.710768914755075, 10.939956283721843, 5.532653478467517, 84.74707236059432, 10.215997604176035, 9.715335953707195, 86.81085162371568, 24.732242096193787, 138.8903414350466, 18.54756110443159, 94.23254069116463, 70.88665147320016, 104.72850319552504, 9.838516138198655, 29.956176459647516, 14.698920655764189, 97.18038355761063, 24.32977061105712, 43.70325882390227, 152.64083703302995, 12.620262969783647, 48.562483266553414, 9.532648358759982, 17.162221021356178, 6.167288388135018, 5.279188157960503, 95.8192221195198, 66.1901384364806, 78.21961803166089, 15.192359913412435, 10.700411173251311, 27.57838003119585, 43.47305144425585, 16.739165349809916, 31.5723997409299, 24.529136482410294, 132.4756911881514, 19.02771167792198, 40.22412432622708, 117.08589232437473, 52.52268587823751, 5.836016398411161, 18.60435587605745, 15.80337445128509, 26.40584601858919, 26.27703218488598, 19.669172139660873, 98.88411557944522, 17.79930409375834, 40.92611024982017, 82.71791981209489, 40.06074014107041, 69.11747058647023, 9.594565166631796, 27.50865322001185, 101.15846331835417, 7.70412690603314, 110.49177555845499, 30.121901033380347, 6.896846603999086, 20.092371301506965, 33.639196228808444, 33.0145803382073, 5.836129467041283, 84.41255595513724, 117.37878933890624, 141.3111785291019, 37.791305319211716, 15.987986410376797, 32.28913945720731, 75.5337901019239, 11.857506411530233, 41.8539724213307, 47.314738663842355, 36.86516912819319, 12.572309287365083, 5.653704388315025, 33.015608656974344, 42.62074033790915, 8.203122889327787, 59.60573019067881, 130.67199938563266, 11.115451685414424, 43.20669042648933, 35.54089067453413, 37.21432487534806, 52.706229063869664, 67.5513989170959, 68.17987605441522, 133.52838607518134, 50.36203933628218, 138.2327731712037, 10.718460866631231, 45.931117660314264, 7.56241434147632, 42.218843186691245, 70.92608700879893, 32.199203252827886, 57.96228552864208, 9.899624089376408, 33.458961083698114, 60.606673105162, 50.773970736200994, 41.593629367611, 19.36374714569017, 16.398200191790327, 20.56307078607526, 5.191334721193701, 58.011374827806215, 63.47144206547647, 21.33111947337301, 24.42832097829489, 12.374864645560846, 34.68062276570986, 22.54518327331136, 9.196694939186532, 5.9196221237714965, 20.101342240709922, 21.134814175576498, 122.73166817599126, 76.34682946614414, 72.81464732466408, 7.831966247178425, 141.49591220536973, 24.185175335206743, 8.073713746536765, 63.495311128043454, 15.290045747203246, 78.07089265300532, 36.60563092415504, 33.925804333193575, 84.02642056723234, 43.50960565488254, 33.099763067375804, 78.08735370481402, 152.85834337610046, 6.837604711458433, 12.306858666109372, 65.84097661152146, 79.14209363666973, 40.484580545879275, 99.09557428064836, 82.58045855258419, 86.83322703100062, 24.662340478514633, 85.69599123470279, 22.44130856570151, 51.11730212932918, 102.24284009214743, 32.676973867964335, 85.23401454881292, 30.44185533087699, 33.019110430333136, 24.237515166988736, 14.671871246460228, 31.468531715912402, 34.11334224594391, 25.861882390604862, 39.0677616734694, 47.474342857325496, 7.610176851562535, 21.46989902086468, 31.65142126322126, 31.3320529011636, 5.159390923126371, 82.23811241950503, 14.721196059000675, 44.13591430491178, 43.01435723233669, 20.151714771190328, 33.2758562655497, 34.613207987276816, 57.42020546196503, 75.25414017266557, 21.86803367613442, 5.99991784137223, 81.60455879047444, 26.993534370582992, 13.64795104614945, 32.59272521079663, 62.704062797684244, 90.90463130605089, 98.1689412488446, 81.73799123594151, 12.21053695888473, 25.43623626312952, 73.9146869334651, 26.344059107667096, 7.566629416679354, 58.525172187012174, 15.632480996488415, 12.095974175029408, 66.2230589588838, 43.83156749222177, 81.15677154133749, 18.890256183586832, 16.671635444434862, 20.704654105784954, 13.718357986799706, 37.28835997674643, 9.346516600408698, 21.276520915937585, 23.69414799481839, 13.654144259188831, 65.6159972492708, 93.05849585629059, 10.088947415652989, 5.786899990956335, 34.889878995392486, 104.94800955182842, 41.244575048091605, 6.399956338246179, 7.229369856894686, 27.885888226296153, 15.475757278016843, 82.0521169163349, 50.89369669149225, 14.257379722563039, 29.38057228264339, 18.438861658624557, 88.98713116721291, 20.248517252359903, 42.27569412966495, 30.173789807256135, 112.65235497195175, 41.376780806140054, 42.91782310287605, 23.71597051681957, 76.72946752637736, 12.31861260054439, 29.655850128842374, 61.42674444968281, 28.900189325432034, 24.660659595173815, 28.729286625205646, 17.236505167478263, 12.294680651135003, 29.747428997055344, 100.32650841335088, 25.152020416567243, 21.704160360116997, 5.721379653828883, 22.59763331880462, 79.39119009182245, 37.759775813919184, 41.134063615269355, 75.75065565507155, 25.25605689381764, 7.104174255246266, 13.396528666968466, 48.48505761623598, 31.461685788478853, 27.925519212460202, 18.97471884192687, 27.54416402807712, 14.631746348393676, 73.04193983338386, 17.29417091881796, 102.81891752317688, 11.71933138212406, 8.742405317393692, 24.81900653838123, 72.68865696356762, 30.215117436125265, 15.987080621659466, 32.86201119129627, 7.7287578878972285, 29.841768389864626, 69.33272839495841, 66.8894541131827, 13.901341557575986, 65.11304299677234, 77.13855323503589, 49.77389326303645, 74.6985130400924, 40.42135665285048, 11.986774542332839, 8.82107911024022, 10.390840546692791, 60.694790141944694, 34.77848774016349, 31.17967600969003, 88.99466873922329, 76.31807388366359, 23.965823058651225, 149.2072176016971, 18.506777835241607, 88.54333111063237, 5.48348010976854, 10.37766079064608, 26.628033735205896, 22.913437990453765, 52.36790996950922, 6.395288379462534, 9.840489167725478, 35.4393217285775, 42.210013394080235, 48.1481740376236, 5.990038339911791, 19.3897133611565, 8.609137717860294, 21.087344135505433, 10.996028159323652, 53.01100604830758, 59.075918649153735, 8.27171455098959, 5.190386359226883, 55.39559847683676, 9.829127516351926, 5.516354013112337, 86.57064286192214, 11.540788343131759, 69.42354921744925, 46.49320080532952, 31.191712553796783, 35.813046672963026, 67.90490591182132, 61.445224428649425, 18.693556650901346, 12.476659021991672, 16.955743549712942, 28.27569295026923, 45.478737069834395, 29.384591890652818, 26.168371323268833, 36.03812975271932, 13.765001251056843, 9.231548496759098, 57.63160821578927, 92.60946430187688, 187.55833744156598, 52.22516572987413, 9.978425443680432, 15.386336397956281, 42.04910037711554, 34.788553765030116, 69.21774979524625, 76.96307726868488, 30.252757337137663, 35.1372847862126, 26.80299120814034, 10.660782992847869, 7.390708355621541, 21.039410122456704, 97.86458266124481, 22.832218436415687, 52.55207389236594, 17.42692883864123, 45.96957576501201, 15.667233439440116, 17.203515181066425, 38.7711129993001, 5.900797125672858, 16.61649855580193, 32.43913582585111, 117.15602415653927, 10.356330938219806, 59.93078393899508, 49.23655075778057, 8.105066884236248, 58.29669265984812, 54.69815069148869, 70.38767317878086, 102.24931216319376, 58.485415079551785, ...])
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);
([4533600.581332714, 4614651.718573868, 4702012.152324141, 5054759.958855549, 5056873.935883439, 5057073.4375, 5064500.711837092, 5076631.7316711005, 5170621.966160163, 5173860.3742344435, 5262629.922011983, 5264213.4925048845, 5267462.953456312, 5271107.489044412, 5323020.061105629, 5324049.254030731, 5331996.677620477, 5367093.767536037, 5368182.09261791, 5370904.265812066, 5371243.792853056, 5371613.233980978, 5371615.915884152, 5372556.425656875, 5372564.024575139, 5372587.5, 5372748.395696257, 5373050.802292735, 5375807.400277732, 5386651.148788081, 5405810.9375, 5405811.484184547, 5405813.013988767, 5406801.646962966, 5407859.502570552, 5407967.949851286, 5408767.993721453, 5409661.685013525, 5409676.5625, 5409781.119044104, 5410664.0625, 5410681.25, 5410932.580599679, 5412712.5, 5414723.884321621, 5414733.045364706, 5415214.189686784, 5421020.21360754, 5422108.605866689, 5424646.288574569, 5440014.0625, 5441292.1875, 5441407.8125, 5442609.759370593, 5443587.280319009, 5443814.262391053, 5443851.5625, 5444007.787194037, 5444209.056118262, 5446673.745816909, 5448364.555539967, 5448816.174821295, 5448877.40295788, 5448993.75, 5449198.4375, 5449252.601201148, 5449598.4375, 5449831.043495982, 5450026.087792052, 5450389.0625, 5466918.75, 5467891.89504626, 5469059.771043005, 5472794.546371295, 5473751.7113912245, 5474027.0998734385, 5491785.9375, 5494932.368378949, 5496414.871895225, 5501084.104635229, 5501234.11296575, 5501621.307997572, 5501933.396543491, 5501970.722687863, 5507290.625, 5508940.122138476, 5509404.495689984, 5509546.788241903, 5518134.375, 5551415.766454306, 5551637.153003738, 5552176.190779094, 5552185.344739627, 5552626.5625, 5552791.474508541, 5555561.480048197, 7130850.0, 7255927.666478827, 7257976.142201145, 7259604.071641453, 7260022.542804809, 7282812.092066751, 7282812.530295535, 7284060.242412677, 7285782.9740119055, 7286455.374120263, 7286691.579740602, 7289092.1875, 7311908.657846592, 7312044.925057952, 7313219.3514877735, 7340510.9375, 7340826.5625, 7366353.102693515, 7366801.746019865, 7367035.21171343, 7367068.881157324, 7367093.192730217, 7367740.625, 7367808.025884875, 7367821.954455754, 7368973.778830126, 7369159.329407183, 7369346.680628366, 7369637.5, 7369654.276723467, 7370093.069750638, 7370113.0404885365, 7370240.718235895, 7370282.154753807, 7370348.4297868125, 7370522.502222253, 7370560.9375, 7370879.411078038, 7371057.033542678, 7371081.25, 7375960.9375, 7397700.199628317, 7398403.125, 7400528.767989777, 7400907.077831285, 7401035.140928326, 7402132.8125, 7405993.6311069345, 7406337.5, 7425038.714130671, 7437485.9375, 7439160.9375, 7441104.311013412, 7443021.875, 7444432.167996312, 7445301.580191642, 7452771.544257543, 7456816.530203581, 7458607.837991136, 7459470.462087509, 7461343.072178145, 7461385.9375, 7461634.375, 7462133.778375818, 7462742.185694798, 7463531.686802403, 7463718.947189216, 7463996.848064132, 7464316.2899574125, 7465806.064792916, 7472096.2251766175, 7472190.804943562, 7474026.821174438, 7476034.375, 7476067.055437353, 7476183.756789536, 7476826.895465465, 7476981.25, 7477117.1875, 7477252.425020563, 7477531.25, 7477564.385438112, 7477686.140535298, 7477795.3125, 7477809.198741533, 7477891.760355158, 7478231.436601012, 7478393.203416325, 7478579.6875, 7478585.61768538, 7478747.853900815, 7478764.384160354, 7478815.740705482, 7478899.570240237, 7478992.319987098, 7479034.356246244, 7479039.806717399, 7479161.673529665, 7479206.25, 7479229.6875, 7479403.140178393, 7479446.231440678, 7479513.0053981785, 7479625.0, 7479631.25, 7479635.9375, 7479681.257462917, 7479727.087777138, 7480186.127750807, 7480212.909591, 7480226.5625, 7480245.196326395, 7480275.518923971, 7480537.112121726, 7480855.4690975305, 7480942.163912128, 7480995.833063413, 7481074.5342093585, 7481545.57175695, 7481600.0, 7481661.751564687, 7482106.387348454, 7484345.711439639, 7485813.878726546, 7487132.8125, 7508800.772866417, 7511843.75, 7512648.2299580695, 7512921.394071594, 7520355.167460218, 7534833.045024907, 7544920.820113827, 7544978.540552323, 7545271.158116133, 7545331.082192256, 7545445.138791847, 7545570.3125, 7545836.474059491, 7546268.077998778, 7546596.426458315, 7546870.566213264, 7546967.034273791, 7547083.764843809, 7560006.967605688, 7573593.010006068, 7573604.767689151, 7573646.875, 7573670.3125, 7574814.0625, 7574841.787715979, 7574858.350734725, 7574859.104311866, 7574871.859365178, 7575164.279107836, 7575428.125, 7575442.1875, 7575550.230333882, 7575574.788582442, 7575777.951828106, 7576098.936778937, 7576277.493032713, 7576819.51013872, 7577299.754927745, 7577923.44587923, 7578261.435141512, 7578537.5, 7578596.961502468, 7579070.3125, 7579459.375, 7580992.274219973, 7582456.050387825, 7582554.6875, 7584254.904294129, 7584854.210439497, 7592425.152395214, 7595057.8125, 7611815.564086987, 7611865.282208581, 7612109.751301499, 7612154.456878653, 7612553.293000838, 7612704.40566823, 7612987.247583755, 7612990.625, 7612999.523235025, 7613420.292806413, 7613456.604553853, 7613655.003914366, 7613900.0, 7613984.375, 7614009.045952097, 7614026.5625, 7614429.6875, 7614605.2206134265, 7614652.448379404, 7614812.899865724, 7615198.086729319, 7615370.3125, 7615511.600618446, 7615638.662352463, 7616107.8125, 7616113.7530366285, 7616454.6875, 7619582.220487826, 7630975.0, 7639009.93515339, 7639359.375, 7639540.625, 7639552.112212269, 7639985.9375, 7640439.890735721, 7641263.658750196, 7642495.3125, 7642946.875, 7643004.40051655, 7643026.5625, 7643057.932484314, 7643326.5625, 7643623.163321054, 7643800.824866443, 7644003.308355737, 7644170.3125, 7644181.25, 7644194.949075019, 7644245.737677547, 7644423.2543667415, 7644653.125, 7644851.5625, 7645026.462821502, 7645505.135135091, 7645555.311442958, 7645949.588873143, 7646089.822391509, 7646880.5652662115, 7647318.75, 7648392.1875, 7656310.9375, 7657486.519954386, 7658454.508594686, 7658647.008123988, 7659079.593188779, 7662148.4375, 7662193.868492853, 7663485.35992381, 7663681.25, 7663874.619500375, 7664159.165440858, 7664935.786969955, 7665677.867339769, 7666299.16107939, 7666374.134338231, 7666494.69440371, 7666900.0, 7669482.2582983645, 7669669.783393214, 7669719.050550677, 7669729.903085469, 7670546.327149686, 7670632.8125, 7670713.805985256, 7670798.3025194695, 7670926.150399598, 7671121.377063084, 7671140.135196949, 7671481.598222197, 7671963.651949804, 7672211.538142364, 7672255.532610023, 7672766.064426353, 7673311.382124411, 7673500.595110963, 7673941.610758146, 7673943.75, 7674140.179960391, 7674254.425621526, 7674970.165411968, 7675537.5, 7676875.672332426, 7676932.276546538, 7677850.066784676, 7678323.4405047465, 7678384.131128327, 7679312.456121103, 7679438.885081177, 7680158.700048805, 7680434.375, 7680772.360745862, 7681329.118640543, 7684074.4904714385, 7686915.352464188, 7691037.435288977, 7691907.997528757, 7691914.83580752, 7692164.369968065, 7692368.75, 7692435.9375, 7692479.6875, 7692662.464597799, 7692673.3451818675, 7692925.807918398, 7693029.650856124, 7693040.625, 7693056.527342704, 7693059.033697785, 7693098.636058878, 7693275.2152408585, 7693425.762410693, 7693662.5, 7693832.564098711, 7693834.185890362, 7693889.757550759, 7694157.247007078, 7694165.368631816, 7694237.772059209, 7694242.627820295, 7694318.75, 7694425.758256223, 7694473.984495546, 7694582.733334029, 7695049.750930375, 7695123.520425079, 7695128.828904043, 7695203.017012993, 7695253.773192486, 7695343.549324702, 7695471.875, 7695555.622113337, 7695971.690164323, 7695981.25, 7696023.4375, 7696036.052860982, 7696100.0, 7696203.239397824, 7696324.779476644, 7696436.87809668, 7696936.348370539, 7696991.919708124, 7697181.25, 7697276.961558601, 7697852.66873726, 7698182.8119175425, 7698511.6247935705, 7698775.0, 7699337.492933176, 7699439.242052186, 7699720.147083474, 7699777.964933839, 7699916.208811402, 7700188.854550957, 7702006.25, 7702190.432298113, 7703112.5, 7703181.455087928, 7703185.462733316, 7703692.767920578, 7703739.0625, 7703744.29981576, 7703975.0, 7703993.443110658, 7704022.414886819, 7704028.227461113, 7704155.204664016, 7706160.889115517, 7710974.230643363, 7726484.728787348, 7734209.549632553, 7735809.62908538, 7736240.625, 7739105.424807929, 7740017.993807916, 7740123.343712607, 7740373.964672589, 7740687.5, 7740708.943330985, 7740823.4375, 7741199.37419887, 7741301.258299717, 7742012.1415230995, 7742231.25, 7742403.667326359, 7742473.4375, 7742532.17172271, 7742990.935555887, 7743046.875, 7743056.963369591, 7743058.513117285, 7743060.766021605, 7743092.1875, 7743332.625189613, 7743410.088591653, 7743943.182753278, 7743950.0, 7743973.85697145, 7744144.103250378, 7744158.17158411, 7744175.125910978, 7744348.505957693, 7744379.152780967, 7744382.8125, 7744497.6512450995, 7744533.213749541, 7744609.460156739, 7744715.954975923, 7744850.357759021, 7745023.032585389, 7745260.8236849485, 7745321.31134578, 7745355.710496403, 7745456.232768617, 7745673.980685449, 7745693.231042031, 7745951.5625, 7746033.179022608, 7746040.13156402, 7746109.585477675, 7746112.82005856, 7746154.9694663575, 7746216.883125668, 7746762.760521893, 7746916.667523701, 7746945.010983733, 7747410.483584801, 7762279.666180788, 7765928.033683427, 7769881.25, 7807560.471636272, 7812939.0625, 7828096.073013909, 7828355.777999672, 7828424.483995004, 7828655.2609110875, 7828792.488360346, 7828816.932559221, 7828895.3125, 7828914.0625, 7828983.474170684, 7829041.654181289, 7829077.8105710335, 7829358.455783656, 7829359.889897601, 7829389.694463567, 7829606.183122504, 7829679.538498887, 7829706.183141292, 7830047.893895959, 7830235.716764415, 7830301.183618018, 7830472.80119178, 7830620.129800189, 7830680.197063995, 7834900.508866502, 7835600.123626949, 7836123.4375, 7836132.543257865, 7836195.511975592, 7836307.272087162, 7836364.187221875, 7836388.044979409, 7836505.042838987, 7836517.192364376, 7836621.875, 7836668.75, 7836689.0625, 7836699.855453091, 7836759.121996558, 7836798.4375, 7836799.533073716, 7836804.6875, 7836849.258509409, 7836853.773491259, 7836860.457113752, 7836878.362434768, 7836886.942659926, 7836902.998451753, 7836964.021881552, 7837046.875, 7837068.044150875, 7837092.610497565, 7837121.875, 7837157.90418698, 7837220.3125, 7837255.538900093, 7837275.73638812, 7837285.9375, 7837308.1401591, 7837358.811505934, 7837449.370308512, 7837476.5625, 7837484.977989375, 7837498.501860904, 7837532.8125, 7837635.5512986295, 7837645.535336665, 7837712.247454031, 7837725.0, 7837734.09149459, 7837742.176346575, 7837876.555104292, 7837882.87309006, 7837896.305376216, 7837898.803363984, 7837901.526022631, 7837907.8125, 7837927.395651505, 7838002.0925916275, 7838014.694807029, 7838107.075056271, 7838122.648119529, 7838142.1875, 7838187.5, 7838235.416300348, 7838236.3618717445, 7838253.808524964, 7838278.204490908, 7838316.92329482, 7838332.433642429, 7838341.744131938, 7838343.2001858605, 7838363.774749525, 7838383.998949177, 7838388.453620533, 7838393.196576945, 7838398.4375, 7838411.203472306, 7838423.219394241, 7838428.925108094, 7838463.069595373, 7838470.357877855, 7838471.876560698, 7838542.136355324, 7838582.8125, 7838589.819357597, 7838635.003973913, 7838685.9375, 7838716.266298286, 7838729.5359462015, 7838738.520019224, 7838753.941681751, 7838815.662274533, 7838818.688116088, 7838873.3139679255, 7838923.42869745, 7838939.0625, 7838944.63877131, 7839034.796650008, 7839046.529517459, 7839048.210640467, 7839060.5599323185, 7839085.08102197, 7839126.5625, 7839256.25, 7839328.125, 7839420.856962897, 7839483.831284759, 7839668.68486403, 7840021.875, 7849980.924412094, 7850760.9375, 7851655.175755926, 7851664.845342715, 7852307.8125, 7857334.603785678, 7858842.66925114, 7858925.728562989, 7858985.547420649, 7859443.75, 7859707.8125, 7859793.75, 7860201.656454885, 7860245.020774805, 7860553.075303373, 7860587.5, 7860730.090777309, 7860803.125, 7860913.4930510195, 7860921.875, 7861050.7738827, 7861104.6875, 7861228.778809238, 7861334.0219797855, 7861336.230943744, 7861372.589287072, 7861522.08412507, 7861531.095155106, 7861544.656440977, 7861694.607909901, 7861820.3125, 7861866.215619889, 7861875.0, 7862095.3125, 7862114.0625, 7862227.669381659, 7862228.420652937, 7862231.73132129, 7862403.749795174, 7862464.333087376, 7862587.5, 7862637.240925442, 7862708.445613308, 7862760.284600342, 7862909.339885105, 7863099.848656473, 7863258.107427184, 7863440.252704373, 7863519.400597411, 7863560.640636287, 7863953.125, 7863992.437396584, 7864016.218135164, 7864118.28915033, 7864200.421597983, 7864357.730321984, 7864378.125, 7864417.175639943, 7864483.941301086, 7864513.195309885, 7864515.500229114, 7864751.5625, 7864904.52628043, 7864939.646404477, 7864955.824005034, 7865159.367145383, 7865230.784229298, 7865301.5625, 7865435.9375, 7865684.630762049, 7865719.288999104, 7865913.999869675, 7865951.5625, 7865964.0625, 7866020.009896049, 7866030.971387973, 7866054.6875, 7866070.198201175, 7866078.834804322, 7866101.5625, 7866117.804495838, 7866159.375, 7866192.79087041, 7866286.887582087, 7866339.0625, 7866418.482721371, 7866525.0, 7866561.756295846, 7866570.6485245135, 7866574.401425431, 7866626.081356338, 7866691.729047906, 7866714.0625, 7866755.733607429, 7866766.186453445, 7866835.049101078, 7866875.0, 7866888.916845761, 7866902.961271364, 7866948.207490584, 7866964.91144362, 7866965.0883174725, 7866982.8125, 7867023.082921007, 7867104.6875, 7867128.716020551, 7867234.185412758, 7867288.663355424, 7867315.199545518, 7867385.9375, 7867518.838532965, 7867573.4375, 7867641.152555777, 7867646.551926116, 7867661.519225684, 7867679.6875, 7867781.776939428, 7867830.861519991, 7867917.364671723, 7867920.672659277, 7867955.3302811375, 7868070.3125, 7868119.527885217, 7868135.9375, 7868161.557433477, 7868169.711964152, 7868171.708627116, 7868292.68519586, 7868353.8934575375, 7868368.088243942, 7868370.3125, 7868391.974231327, 7868393.75, 7868428.125, 7868504.6875, 7868551.5625, 7868570.049675634, 7868584.302411688, 7868592.853365545, 7868595.6260604, 7868691.173956742, 7868714.854940993, 7868799.688555586, 7868892.206645112, 7868951.060171039, 7869019.956972238, 7869036.595743789, 7869048.179271407, 7869090.625, 7869220.253471945, 7869290.625, 7869296.875, 7869338.416627524, 7869339.0625, 7869499.014128097, 7869529.6875, 7869608.53396746, 7869723.976294446, 7869730.357080915, 7869779.477318304, 7870010.855031986, 7870280.863473287, 7870289.0625, 7870437.5, 7870723.1652792, 7870802.527850535, 7871129.472466176, 7871192.784994705, 7871363.27438834, 7871437.5, 7872104.566598, 7872963.960136457, 7873093.741291111, 7875304.857695494, 7875355.336326903, 7875384.788565539, 7876080.618274842, 7876265.625, 7876983.567413253, 7877206.640252805, 7878636.917154813, 7884177.762254309, 7885796.819382042, 7890571.892820023, 7893080.7280113725, 7893090.320556534, 7894179.809356616, 7894190.625, 7894445.0557896495, 7895328.902931205, 7895898.064675188, 7896430.322699462, 7896532.981232115, 7896611.213605003, 7896613.48317553, 7898920.707724467, 7900673.404381435, 7903415.758443775, 7905244.325079228, 7915617.1875, 7916904.495633369, 7922043.75, 7925705.669616626, 7926551.5625, 7928649.30820541, 7929959.375, 7929970.3125, 7931054.6875, 7932017.564917438, 7932065.625, 7932659.072273009, 7933384.579031703, 7933775.648232523, 7950877.367881125, 7950932.5802383125, 7951867.1875, 7951877.893045023, 7952109.375, 7953300.494999093, 7953370.949616082, 7953923.4375, 7954102.696873491, 7954156.05231612, 7954186.846917654, 7954328.352320523, 7954430.854027052, 7954437.5, 7954664.0625, 7954878.125, 7955403.125, 7955515.434365863, 7956154.621363581, 8037551.088034987, 8052556.25, 8052994.401948865, 8053178.093986538, 8053513.266611659, 8070882.376266819, 8074173.353784807, 8074471.838569336, 8074634.880178571, 8075686.362925397, 8076114.410672115, 8076567.960300915, 8076770.336026593, 8077624.541189592, 8078012.5, 8078478.374699695, 8078620.3125, 8078626.896703979, 8078638.676725512, 8080440.625, 8082812.450761894, 8083466.884922489, 8084320.673616316, 8085417.480636754, 8085460.9375, 8086362.719633268, 8086633.914512227, 8086781.737889378, 8086949.327785857, 8087401.033700542, 8087664.0625, 8087775.532224303, 8087871.091720129, 8088300.567996274, 8090413.400844699, 8090942.21029665, 8091057.622276073, 8091489.762546085, 8091964.753075723, 8092139.558818692, 8093705.710568043, 8096899.999831993, 8111762.690911484, 8112840.053239405, 8112905.638256362, 8114334.921385314, 8115356.208297321, 8115664.0625, 8117470.3125, 8117603.688609441, 8117791.222273659, 8118152.12641857, 8118263.520839604, 8118763.976590371, 8119875.0, 8123174.02423379, 8124448.409288131, 8125326.043029559, 8126371.875, 8127634.9102961905, 8128138.712973346, 8128575.0, 8129339.311623819, 8129710.748974122, 8130040.625, 8130657.568049319, 8132087.207606269, 8132310.214222402, 8132312.422315576, 8132363.522659461, 8132442.578423724, 8132452.006608352, 8132465.612284058, 8132470.3125, 8132482.8125, 8132517.055808375, 8132534.686424372, 8132548.911342506, 8132570.191997605, 8132581.25, 8132584.375, 8132586.611113737, 8132586.808837332, 8132588.177450484, 8132595.424507472, 8132614.317712037, 8132616.841792903, 8132618.75, 8132671.875, 8132695.3125, 8132707.718854333, 8132731.15648655, 8132734.054222224, 8132752.49649991, 8132772.890784372, 8132777.068262228, 8132791.812021125, 8132800.0, 8132805.21577283, 8132821.875, 8132828.303207229, 8132833.301634489, 8132840.625, 8132849.545722507, 8132862.879512318, 8132881.25, 8132885.9375, 8132890.06826198, 8132896.875, 8132901.5625, 8132904.327729804, 8132904.6875, 8132904.6875, 8132918.75, 8132921.875, 8132941.027085772, ...], [5.858283604494968, 9.466953703263748, 97.69483545419452, 14.760248214037215, 17.255620120399076, 87.46411865868899, 7.3220495227525815, 11.97446035355754, 73.93425277169953, 6.198563518837759, 15.917631384058403, 7.409317647863509, 86.30627144042775, 23.455682517942247, 36.198312832288366, 61.64830159678388, 25.784012118481108, 15.008772506809228, 19.548297049869895, 6.045318343404709, 5.463608850856272, 17.90088537677982, 9.590100611611199, 5.347977047790089, 11.068940754759838, 29.54802871881611, 7.588187637695093, 32.929646528710805, 9.005582071433174, 22.39933663131464, 60.89471977449219, 7.272976938228096, 17.34449763471777, 32.09145758491447, 7.15539477607023, 12.572880625864983, 11.528129139400319, 15.870242700879167, 33.675313795730894, 80.8310426509145, 60.255277239231624, 78.17387904858052, 8.167637029948754, 45.91512045450918, 11.906174273852123, 85.90235802125804, 15.44950721902028, 5.288042281816698, 12.811821949506552, 28.10703544530623, 76.07915153383972, 30.433143492137123, 74.319929623816, 116.6314098501871, 123.48537245150196, 22.28050544661933, 40.710478372767064, 28.03364359238536, 85.2316350142394, 7.718691623722105, 24.634211650642847, 52.7529986136722, 67.36020202403645, 37.814408537392865, 29.976927102430928, 21.25893426415843, 109.73650838449956, 10.819572779448846, 84.77850598711636, 54.007135156219604, 73.52879790814947, 13.932833822777363, 16.701565666295373, 26.060490561890656, 15.541098349272223, 10.868187291326755, 85.66429416515442, 22.069241402128625, 19.292146698317563, 10.729865386909625, 5.1967970867206175, 32.8880429936045, 51.71535028342802, 6.5533734282100315, 32.12836277884468, 21.464602418572206, 30.92753160848539, 7.572157294674672, 89.55396048514403, 46.644930319820595, 5.3853723319215785, 13.691660911140401, 25.680497364997144, 103.10598540915933, 140.56683459964995, 22.570401300517517, 66.52054709159245, 21.898260549049176, 33.69504509488072, 28.615969101198775, 73.18391608098759, 8.082026039830907, 9.357151808853606, 7.950295259449671, 15.895961139841452, 18.415999667164776, 6.395860922074072, 117.58151972210666, 19.56972594006165, 54.83072031893532, 57.68544545847727, 41.877326279342014, 40.10325392979493, 14.857163750628278, 9.49155488288842, 10.155634646395939, 6.283912593971942, 7.413395393654236, 43.0922200444505, 37.70715256933589, 11.996558758119571, 16.42441651151156, 27.65375166975277, 7.534417746102197, 70.63626498260987, 10.541096382086117, 19.86558584767328, 39.49353097333203, 11.276636349925251, 29.84288916304351, 6.087297480238738, 16.030458882726563, 49.67598997149711, 29.222477683744913, 72.35068921859785, 42.17287769362109, 66.09477247926031, 47.32092129931145, 67.10105632457079, 53.17059617038463, 8.778909897751696, 10.075517868162242, 40.54269088018465, 26.377083356931394, 32.31164197445263, 93.38560462078961, 32.17648668366576, 31.55380683630001, 9.0321353260878, 64.1693909037426, 39.10856480101749, 20.115618400494984, 10.647304431826706, 34.090854695115524, 15.039568070234111, 15.544061617708506, 15.425921860188122, 65.98614885693982, 76.7639552645235, 20.580493444902693, 11.664725323799711, 9.730234575010263, 66.022531912001, 28.002665258190156, 12.354891068405104, 53.15656664134623, 26.039349445393967, 7.669643131044008, 8.428275557152693, 65.65528469494281, 83.99453230893648, 71.96057998428181, 27.44177188729539, 96.09148126772882, 43.52577829579951, 19.705994794589103, 31.933487047229395, 20.428681439502185, 5.957284266644568, 65.37241795430533, 82.88058491845949, 39.59103685661217, 7.171382792893355, 32.997181907622235, 29.700151924093454, 95.83218142421113, 20.69781086636393, 16.3277907445265, 5.345902180705819, 46.677514093248284, 84.15777849624399, 11.09851945796448, 18.81388046211241, 7.893064422630695, 116.84966560163534, 72.15712485851381, 80.2671514651031, 31.085777639422957, 9.79872714829382, 41.16219015898241, 28.93855516271615, 53.83553302555053, 11.139391892462363, 12.061659581425932, 8.389814484185885, 15.94854005765041, 29.21395687730603, 5.456802233430099, 26.097842899613354, 8.091585870772095, 12.588705630146121, 28.0663859353728, 9.814105020680993, 125.73282494966553, 6.115481087175973, 76.5084788109683, 27.307917088316938, 21.388892253900693, 21.292033787285078, 25.35830668373266, 69.58425225845735, 8.74244841165631, 37.77581087104985, 28.57662566624005, 27.892018939515843, 11.971079208249117, 5.209386701333398, 9.800968474872736, 62.72063265337555, 118.18977020749614, 6.461103751274789, 25.510139220251165, 87.00650345509831, 6.145732470332955, 7.377016937578559, 6.042664651865096, 19.804291497249825, 25.825977681058337, 13.034150146633884, 5.493433666606667, 6.377027113467771, 11.255404389728573, 93.54374458134225, 63.030236836391744, 56.46378933706286, 13.609157834964144, 76.24895071849899, 14.001247831240162, 5.290604553150434, 17.878074050497506, 79.15135390213138, 53.565012918206186, 60.992568512237014, 132.25735381338293, 46.78218365065821, 9.792546527071172, 89.8099631197201, 10.069062498727604, 24.478674670279478, 11.140829386721345, 84.84428238063785, 35.82294297701289, 15.281795604256558, 53.342225193667076, 64.37630012105083, 21.974224410373367, 10.829404713423166, 137.52930831568244, 24.974108414168953, 71.08215925342928, 52.81802669916669, 71.58913174524652, 30.03226487569674, 10.631083140029775, 33.50423402250239, 10.785400066082044, 37.81005495155101, 61.24432897002845, 29.598406249724228, 32.67318072831883, 33.648829323872626, 14.866974247580048, 26.566575467272123, 56.99119959873296, 29.833614950332848, 139.53221271970745, 9.06785456482978, 77.78871213419065, 38.460479349824325, 29.673557017338737, 19.717463781494367, 75.62437581639338, 13.75421623090119, 64.94146212461892, 5.750301615000859, 13.608098676291517, 49.71213032823867, 5.036367181383667, 28.70953535882044, 30.446332535286075, 33.30636740603909, 9.854661186109988, 68.23679305641237, 61.91602073278253, 9.843907058465861, 35.99885346644927, 101.53422847868896, 13.59761598675162, 35.1764715144768, 55.260801429478946, 72.1789921039124, 37.973619809018906, 15.419443329835893, 104.45709975405664, 50.73269233530202, 8.77692774999378, 15.68967916315527, 84.31090697834065, 36.099444255073195, 13.224595975342375, 11.864374881194705, 5.391518867901417, 31.52656554007336, 47.450133748595036, 5.338517627648792, 18.57178400662492, 20.662152402332676, 102.20102108438891, 7.903323614750671, 5.664522812844089, 37.30457408559825, 30.354353353027378, 48.96805926783385, 5.858371655208744, 100.16693981857534, 28.17031829746426, 5.45773310382318, 177.07496762536914, 7.646664224371724, 60.082258237987205, 66.09475841731577, 6.689848120851118, 24.97909163445354, 44.84971029532622, 24.307071418542208, 11.137481747663887, 40.64800560859465, 206.21848995242948, 53.361368708948554, 5.774081356114656, 6.407228997512207, 28.0054620050446, 24.03907402329513, 8.907479490699377, 58.90208985194388, 62.90199577967165, 7.086415745317405, 9.005672113300017, 10.429424712141513, 21.595426924917135, 12.248406987231078, 28.64989018222982, 6.152870293955856, 12.767648396594042, 6.854524455037634, 86.84134854773788, 17.826947234541198, 21.106899866334235, 37.03359231888899, 95.45788731426134, 30.60263835059839, 25.922473676321818, 46.474991264437634, 12.370993413132078, 49.32820140823276, 24.12585281416742, 11.132406665580872, 50.07741073509727, 14.776860180058538, 8.194931977755031, 19.909007300550584, 40.452894059676375, 7.788908740884932, 7.409681122551651, 20.38949864418135, 88.59645265758606, 70.87416560810959, 7.170954607476925, 19.023505674742875, 8.456151421772658, 29.680733696834412, 65.19765869302881, 68.76753029698628, 27.843046443104036, 26.823456660587624, 38.95894439080472, 27.819817579229806, 53.55975606232504, 11.590769536682034, 6.434887760434361, 23.74664531451383, 104.74185159809383, 5.315233210940342, 36.110413472410414, 20.4863776788812, 25.27869156632327, 38.500129335595695, 5.506250699916275, 8.155504016565114, 11.581358729429715, 8.534011322268675, 80.65582913179009, 143.78008381869446, 6.877854842402608, 27.051126553602643, 14.07017196461847, 6.096765357138899, 82.35678104350941, 9.241733233547718, 18.16248469076954, 14.22808399109205, 114.08940366793703, 6.0251509067005475, 30.74356247218984, 102.54809614785262, 57.99999897144174, 6.786758126402238, 50.304183470733314, 35.35743890392174, 24.821961251581957, 28.04868755775001, 23.95489379896674, 5.159171455763256, 74.8733185284793, 6.845879357833484, 7.006465862831583, 14.939289832407175, 62.17235835292462, 53.9352553759966, 14.914642239609874, 15.673088421326693, 25.636873760609248, 25.719460600881337, 50.74518300034336, 98.13403877996276, 42.64870810395488, 55.74554310311628, 74.08108189736424, 11.464153444795404, 23.080193608861755, 9.875656285136126, 41.19863132241585, 69.15092781884222, 42.03959782160212, 87.30383321938118, 70.52596566035204, 5.619737794766593, 17.362731666229966, 27.60242616397539, 19.16995959882233, 48.49468574757745, 5.101908877218258, 32.684694181313276, 58.086944570631275, 12.515703773621654, 19.268780609918704, 10.984208591221046, 17.420542394882375, 104.24115121607876, 29.51133667355614, 29.4136031858653, 24.69576610651945, 42.94966333492879, 96.25157424559964, 82.51970113108226, 22.867455284796886, 54.290818619922746, 38.38865564633114, 9.60856640575039, 92.70070308665854, 6.361740623097901, 10.00352897882769, 14.325856829700381, 44.53728812654285, 10.847028820671381, 27.46677409223846, 86.29767612553093, 37.1849508654193, 26.095578608709452, 16.483735057945456, 13.292497990822017, 11.3303872666008, 15.209019915588648, 8.022698312327885, 61.19630415000202, 25.55760562178825, 25.464168561913134, 9.404461156678009, 77.6794311058676, 11.737083454794709, 76.82205572055992, 10.95434773750625, 82.99211146535166, 10.377572182397753, 28.188314754588223, 31.760935432687226, 13.274422781048663, 86.77913760616428, 88.61957713659152, 21.55883070179447, 7.681180125123507, 145.97870441568688, 8.44153505181909, 13.895773727832792, 65.87716835476587, 27.861608017574145, 5.331694902174661, 5.511448819272902, 74.70851998000902, 5.040008426299863, 66.10802388679346, 7.443006955907302, 81.03979327506246, 7.3368275863722445, 7.441001130564966, 5.379107350133373, 17.036300947757784, 16.227279172854686, 24.343895772669498, 54.15598143535725, 49.47862500197765, 76.87043318356899, 29.109951551543336, 46.221814214533445, 12.307940714238676, 53.716542467370445, 6.896591179495113, 27.26805133957636, 25.892306020826155, 27.268386174897827, 62.338887107415914, 24.818943359954154, 6.690151805532153, 72.16590581946306, 25.374398492885334, 90.76006874834198, 7.798273972065476, 98.06098672185495, 29.33689417502042, 30.706201641213873, 13.389968153201053, 6.660209060466339, 6.788664415921894, 6.877413593415637, 9.65109218067607, 14.960082614329659, 91.37170836704654, 115.97212328061894, 54.0279253586546, 88.81220221061585, 32.101985344045474, 46.86066307387547, 21.82949719007174, 50.84250051917903, 12.709984884721369, 26.646695688027197, 51.6374695814738, 9.54057488977075, 13.171701327692084, 5.0394177862364185, 7.588612453452354, 56.48580143555823, 12.795543357603968, 77.34450027665869, 106.98916646501334, 15.302885573496647, 55.443286025269956, 12.782829037629014, 28.393022247703982, 75.194565718089, 16.3570948633922, 69.84249188357057, 83.89599899480987, 104.85353878774598, 17.875715103632977, 93.77684732812082, 29.563208668716587, 22.549767734200458, 8.408040487817326, 14.059022431989494, 63.22449361298689, 76.36926961307393, 7.5992086548011795, 78.55176172432078, 6.0944227951736725, 49.99579943585363, 6.838814798053739, 92.71686765830884, 39.93979716729424, 10.151549740675573, 12.071409342504639, 120.46941825673636, 110.30275810252859, 6.370081170236501, 30.512403963791744, 40.47640503661017, 25.74580101242436, 11.052423571343095, 100.70782717181292, 58.767555257991, 153.85890151979453, 22.793130209463246, 22.077269446906413, 5.230013353328324, 39.7227116091199, 44.32797304659864, 40.80229232982937, 19.80580673785711, 53.787907470631374, 82.95048600325515, 65.7318814763421, 77.60409641789062, 46.48161079534856, 65.1437387884299, 20.212539997069655, 138.52313184351044, 52.089467071553145, 12.560269565477004, 12.277242689639907, 90.7158369826101, 18.11796517197557, 25.852183407349205, 21.079546556940606, 19.347585312528448, 15.085511629475711, 14.710768914755075, 10.939956283721843, 5.532653478467517, 84.74707236059432, 10.215997604176035, 9.715335953707195, 86.81085162371568, 24.732242096193787, 138.8903414350466, 18.54756110443159, 94.23254069116463, 70.88665147320016, 104.72850319552504, 9.838516138198655, 29.956176459647516, 14.698920655764189, 97.18038355761063, 24.32977061105712, 43.70325882390227, 152.64083703302995, 12.620262969783647, 48.562483266553414, 9.532648358759982, 17.162221021356178, 6.167288388135018, 5.279188157960503, 95.8192221195198, 66.1901384364806, 78.21961803166089, 15.192359913412435, 10.700411173251311, 27.57838003119585, 43.47305144425585, 16.739165349809916, 31.5723997409299, 24.529136482410294, 132.4756911881514, 19.02771167792198, 40.22412432622708, 117.08589232437473, 52.52268587823751, 5.836016398411161, 18.60435587605745, 15.80337445128509, 26.40584601858919, 26.27703218488598, 19.669172139660873, 98.88411557944522, 17.79930409375834, 40.92611024982017, 82.71791981209489, 40.06074014107041, 69.11747058647023, 9.594565166631796, 27.50865322001185, 101.15846331835417, 7.70412690603314, 110.49177555845499, 30.121901033380347, 6.896846603999086, 20.092371301506965, 33.639196228808444, 33.0145803382073, 5.836129467041283, 84.41255595513724, 117.37878933890624, 141.3111785291019, 37.791305319211716, 15.987986410376797, 32.28913945720731, 75.5337901019239, 11.857506411530233, 41.8539724213307, 47.314738663842355, 36.86516912819319, 12.572309287365083, 5.653704388315025, 33.015608656974344, 42.62074033790915, 8.203122889327787, 59.60573019067881, 130.67199938563266, 11.115451685414424, 43.20669042648933, 35.54089067453413, 37.21432487534806, 52.706229063869664, 67.5513989170959, 68.17987605441522, 133.52838607518134, 50.36203933628218, 138.2327731712037, 10.718460866631231, 45.931117660314264, 7.56241434147632, 42.218843186691245, 70.92608700879893, 32.199203252827886, 57.96228552864208, 9.899624089376408, 33.458961083698114, 60.606673105162, 50.773970736200994, 41.593629367611, 19.36374714569017, 16.398200191790327, 20.56307078607526, 5.191334721193701, 58.011374827806215, 63.47144206547647, 21.33111947337301, 24.42832097829489, 12.374864645560846, 34.68062276570986, 22.54518327331136, 9.196694939186532, 5.9196221237714965, 20.101342240709922, 21.134814175576498, 122.73166817599126, 76.34682946614414, 72.81464732466408, 7.831966247178425, 141.49591220536973, 24.185175335206743, 8.073713746536765, 63.495311128043454, 15.290045747203246, 78.07089265300532, 36.60563092415504, 33.925804333193575, 84.02642056723234, 43.50960565488254, 33.099763067375804, 78.08735370481402, 152.85834337610046, 6.837604711458433, 12.306858666109372, 65.84097661152146, 79.14209363666973, 40.484580545879275, 99.09557428064836, 82.58045855258419, 86.83322703100062, 24.662340478514633, 85.69599123470279, 22.44130856570151, 51.11730212932918, 102.24284009214743, 32.676973867964335, 85.23401454881292, 30.44185533087699, 33.019110430333136, 24.237515166988736, 14.671871246460228, 31.468531715912402, 34.11334224594391, 25.861882390604862, 39.0677616734694, 47.474342857325496, 7.610176851562535, 21.46989902086468, 31.65142126322126, 31.3320529011636, 5.159390923126371, 82.23811241950503, 14.721196059000675, 44.13591430491178, 43.01435723233669, 20.151714771190328, 33.2758562655497, 34.613207987276816, 57.42020546196503, 75.25414017266557, 21.86803367613442, 5.99991784137223, 81.60455879047444, 26.993534370582992, 13.64795104614945, 32.59272521079663, 62.704062797684244, 90.90463130605089, 98.1689412488446, 81.73799123594151, 12.21053695888473, 25.43623626312952, 73.9146869334651, 26.344059107667096, 7.566629416679354, 58.525172187012174, 15.632480996488415, 12.095974175029408, 66.2230589588838, 43.83156749222177, 81.15677154133749, 18.890256183586832, 16.671635444434862, 20.704654105784954, 13.718357986799706, 37.28835997674643, 9.346516600408698, 21.276520915937585, 23.69414799481839, 13.654144259188831, 65.6159972492708, 93.05849585629059, 10.088947415652989, 5.786899990956335, 34.889878995392486, 104.94800955182842, 41.244575048091605, 6.399956338246179, 7.229369856894686, 27.885888226296153, 15.475757278016843, 82.0521169163349, 50.89369669149225, 14.257379722563039, 29.38057228264339, 18.438861658624557, 88.98713116721291, 20.248517252359903, 42.27569412966495, 30.173789807256135, 112.65235497195175, 41.376780806140054, 42.91782310287605, 23.71597051681957, 76.72946752637736, 12.31861260054439, 29.655850128842374, 61.42674444968281, 28.900189325432034, 24.660659595173815, 28.729286625205646, 17.236505167478263, 12.294680651135003, 29.747428997055344, 100.32650841335088, 25.152020416567243, 21.704160360116997, 5.721379653828883, 22.59763331880462, 79.39119009182245, 37.759775813919184, 41.134063615269355, 75.75065565507155, 25.25605689381764, 7.104174255246266, 13.396528666968466, 48.48505761623598, 31.461685788478853, 27.925519212460202, 18.97471884192687, 27.54416402807712, 14.631746348393676, 73.04193983338386, 17.29417091881796, 102.81891752317688, 11.71933138212406, 8.742405317393692, 24.81900653838123, 72.68865696356762, 30.215117436125265, 15.987080621659466, 32.86201119129627, 7.7287578878972285, 29.841768389864626, 69.33272839495841, 66.8894541131827, 13.901341557575986, 65.11304299677234, 77.13855323503589, 49.77389326303645, 74.6985130400924, 40.42135665285048, 11.986774542332839, 8.82107911024022, 10.390840546692791, 60.694790141944694, 34.77848774016349, 31.17967600969003, 88.99466873922329, 76.31807388366359, 23.965823058651225, 149.2072176016971, 18.506777835241607, 88.54333111063237, 5.48348010976854, 10.37766079064608, 26.628033735205896, 22.913437990453765, 52.36790996950922, 6.395288379462534, 9.840489167725478, 35.4393217285775, 42.210013394080235, 48.1481740376236, 5.990038339911791, 19.3897133611565, 8.609137717860294, 21.087344135505433, 10.996028159323652, 53.01100604830758, 59.075918649153735, 8.27171455098959, 5.190386359226883, 55.39559847683676, 9.829127516351926, 5.516354013112337, 86.57064286192214, 11.540788343131759, 69.42354921744925, 46.49320080532952, 31.191712553796783, 35.813046672963026, 67.90490591182132, 61.445224428649425, 18.693556650901346, 12.476659021991672, 16.955743549712942, 28.27569295026923, 45.478737069834395, 29.384591890652818, 26.168371323268833, 36.03812975271932, 13.765001251056843, 9.231548496759098, 57.63160821578927, 92.60946430187688, 187.55833744156598, 52.22516572987413, 9.978425443680432, 15.386336397956281, 42.04910037711554, 34.788553765030116, 69.21774979524625, 76.96307726868488, 30.252757337137663, 35.1372847862126, 26.80299120814034, 10.660782992847869, 7.390708355621541, 21.039410122456704, 97.86458266124481, 22.832218436415687, 52.55207389236594, 17.42692883864123, 45.96957576501201, 15.667233439440116, 17.203515181066425, 38.7711129993001, 5.900797125672858, 16.61649855580193, 32.43913582585111, 117.15602415653927, 10.356330938219806, 59.93078393899508, 49.23655075778057, 8.105066884236248, 58.29669265984812, 54.69815069148869, 70.38767317878086, 102.24931216319376, 58.485415079551785, ...])
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)