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 = 45534
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);
([2978167.4804192246, 3454760.9375, 3462803.3158943583, 3515659.2946955385, 3555952.496191728, 3657274.813546558, 3770913.9576160177, 3811887.4324919786, 3847558.656228499, 4075629.4131575054, 4113421.875, 4113450.8354334864, 4135642.2953482647, 4152935.9375, 4152960.7882659934, 4179159.0039434005, 4217966.79137173, 4228348.9551524585, 4228367.895231769, 4249451.5262805065, 4295785.9375, 4303719.602134566, 4338875.420885558, 4340166.819715625, 4343500.767290741, 4346171.875, 4346279.175266289, 4356966.99536194, 4389159.375, 4390282.508633663, 4394903.3076764755, 4404731.25, 4481969.711581762, 4509321.875, 4542242.679196378, 4553390.154672707, 4553409.375, 4568523.4375, 4574314.063320635, 4697560.9375, 4751123.356307624, 4775967.1875, 4797314.056230351, 4807198.2444456, 4823781.25, 4956930.611696399, 5062942.612125982, 5070158.757842411, 5071456.25, 5071889.891373436, 5074365.2453639, 5095838.82015792, 5124015.625, 5125083.415244969, 5143415.625, 5147282.8125, 5153995.3125, 5252058.251659672, 5266515.049597028, 5267139.0625, 5272545.715239691, 5303527.3273005895, 5305316.835370953, 5306580.460086258, 5318652.915577796, 5350621.599211724, 5398834.197325072, 5398870.652135491, 5404096.875, 5412023.116624346, 5414356.25, 5420787.5, 5466476.5625, 5498915.430964843, 5500815.625, 5508378.083901907, 5544120.988266949, 5550700.0, 5558314.0625, 5559437.407100756, 5560712.5, 5560728.972009329, 5561098.342337724, 5563031.838947276, 5563713.062696213, 5564249.866888977, 5566606.165291275, 5575252.900368781, 5593183.444214635, 5593631.249985517, 5595618.75, 5596565.625, 5597771.270208929, 5605259.123718632, 5627025.0, 5631171.875, 5656141.978088182, 5659689.601463135, 5661658.55611188, 5664877.820851802, 5665291.515033765, 5667315.738798246, 5694241.303489548, 5696893.75, 5716812.5, 5723081.25, 5725113.661254647, 5753945.993909353, 5755480.60143547, 5756503.125, 5757283.604059472, 5757913.66852747, 5760429.061303952, 5762707.8125, 5762981.25, 5764660.9375, 5770828.125, 5803967.082080865, 5803979.641144772, 5804864.626499183, 5808935.098984129, 5812790.625, 5822372.926095771, 5824691.826712846, 5825335.9375, 5830334.206506991, 5836912.5, 5849414.99024758, 5853707.8125, 5853745.3125, 5854781.159702388, 5867094.422418603, 5867633.766071846, 5878346.275037365, 5896562.054199139, 5900043.75, 5934259.375, 5936912.492884337, 5939420.692463175, 5939429.235369713, 5946814.543393357, 5946817.1875, 5951326.5625, 5951914.0625, 5953022.433873435, 5953940.3701324565, 5957446.836555195, 5958085.718405936, 5958661.198261667, 5958796.559456829, 5960400.0, 5962940.46826646, 5988368.902568891, 5992100.0, 5992328.733496258, 5993803.125, 5996703.728441773, 5998709.375, 5998854.6875, 5999757.8125, 6000727.912086519, 6004451.021586364, 6004872.39630943, 6006704.6875, 6006704.6875, 6006732.056012795, 6007186.770362967, 6007818.75, 6009137.5, 6009383.021162725, 6009424.465219566, 6010598.208297038, 6010659.139318292, 6011027.73502252, 6014154.582148383, 6014418.75, 6014834.494544454, 6016897.716390934, 6020652.504824644, 6029228.125, 6032970.3125, 6033901.91226056, 6036178.125, 6037061.879524618, 6038769.101364183, 6039511.213705909, 6045509.375, 6045522.631018991, 6048021.2098155925, 6048540.625, 6048559.404508443, 6049775.213505241, 6051992.1875, 6054365.625, 6057007.8125, 6058754.23124284, 6063608.070459805, 6070563.814132197, 6070948.624401828, 6071204.18110801, 6074278.125, 6074939.0625, 6075537.323145559, 6115275.0, 6121038.006858881, 6146968.75, 6155343.75, 6156000.964173659, 6159782.8125, 6161151.5625, 6163227.782956864, 6180354.6875, 6190895.3125, 6193031.131635881, 6193195.3125, 6195979.40276541, 6198355.662588504, 6203966.099422943, 6209180.049066577, 6211266.67175734, 6224187.273399544, 6231638.471219113, 6233075.643934565, 6233568.75, 6242082.918413559, 6260031.721840758, 6260038.774252816, 6261099.292103736, 6266289.0625, 6286714.424411904, 6289464.792035963, 6290012.5, 6292181.25, 6294437.0182036245, 6315789.86545145, 6341398.928694532, 6341900.0, 6349249.862109227, 6350489.754447677, 6351450.709079717, 6351635.9375, 6351673.718426519, 6351827.866019655, 6353735.800352299, 6356044.040363603, 6356195.3125, 6371382.8125, 6372611.041095264, 6373232.125859751, 6374905.534109924, 6375938.995144346, 6376053.7246817, 6378634.251818512, 6379214.0625, 6379278.705806417, 6383555.701169401, 6383665.181420866, 6384624.576962273, 6389468.75, 6402602.647383131, 6404371.751939651, 6406241.615834727, 6406311.782542684, 6407058.9312608745, 6407446.110827411, 6408398.081692916, 6408477.107066961, 6408618.261534981, 6410860.600856834, 6411007.975381268, 6411787.5, 6412288.382339274, 6412581.517825585, 6412741.964627549, 6412794.6705803, 6412799.452847815, 6413058.4142963905, 6413967.1875, 6414884.706885606, 6415170.3125, 6415379.412417834, 6415648.4375, 6416456.25, 6433958.7345805755, 6436994.776121953, 6439102.204742273, 6439982.8125, 6440051.264509349, 6440714.528827412, 6441829.542833291, 6443065.5699790595, 6453086.031545325, 6464147.553773984, 6465415.625, 6467772.238699788, 6471722.024814551, 6499513.328440955, 6504132.115850727, 6529688.614560727, 6541032.097232328, 6544736.806700429, 6548479.788609281, 6548650.06815827, 6549264.4493759265, 6549274.097967564, 6549848.4375, 6550787.854063798, 6552481.25, 6552509.04194384, 6555223.768252053, 6558705.549885453, 6563627.663231965, 6578642.560078683, 6582491.342310027, 6589470.943699212, 6590214.281721706, 6591345.3125, 6591662.248361578, 6592038.937388862, 6593362.319845058, 6593617.1875, 6594514.0625, 6594734.375, 6594911.562401966, 6595403.446524694, 6595825.509677562, 6596178.125, 6596680.009380682, 6597253.623240973, 6601971.743179891, 6614089.574190782, 6614532.8125, 6615868.75, 6616704.459437788, 6617056.980388018, 6619430.798590762, 6619474.380816828, 6620281.689359202, 6620842.1875, 6624123.4375, 6624310.9375, 6624338.607887104, 6628473.4375, 6628879.6875, 6629316.247640765, 6629349.714408596, 6629952.981880502, 6630107.8125, 6631995.278409888, 6632745.82672727, 6635808.282635829, 6635843.165741985, 6645054.6875, 6657951.772403791, 6666913.897715967, 6671641.4434242025, 6671803.569391151, 6671876.5625, 6673976.09102822, 6674443.061216482, 6674458.585858033, 6676385.405339558, 6677928.009996628, 6684020.3125, 6684582.185740968, 6684979.288823046, 6685109.999751619, 6687233.606439888, 6699771.875, 6700082.517310284, 6700918.440321083, 6700919.853344798, 6700943.361029313, 6717634.375, 6720862.335369032, 6720955.949176494, 6724776.181868945, 6724888.854147841, 6727640.529862913, 6728521.875, 6728729.245760442, 6729051.5625, 6729053.029399284, 6729096.788659579, 6729188.565721109, 6729275.964110611, 6729839.0625, 6730352.803820883, 6731026.144184111, 6731793.307597322, 6732033.816223755, 6732134.375, 6732321.910228131, 6732693.158890085, 6734130.254796136, 6735055.5525490325, 6735272.893300964, 6735830.386708173, 6736226.296598304, 6736234.720098706, 6736439.97568281, 6739552.942929812, 6740141.129788697, 6742586.107612249, 6752166.83904066, 6752207.723673643, 6753170.758068223, 6753231.758674503, 6753504.298265152, 6753544.431962199, 6754195.3125, 6754520.3125, 6754570.3125, 6754923.4375, 6755004.6875, 6756060.096874996, 6756471.870612892, 6756479.342848057, 6757127.790606723, 6760302.817484928, 6765127.112044467, 6769274.756184054, 6770701.393275694, 6770726.84921194, 6781218.64323262, 6781759.126834308, 6782152.747476866, 6782236.465640954, 6784068.75, 6784711.013404666, 6786431.25, 6788209.375, 6789359.184685509, 6789434.375, 6790229.186639871, 6790532.35972707, 6791104.6875, 6791537.3548225835, 6793334.773462466, 6794541.991939561, 6797041.812531401, 6799118.8212222755, 6803492.7921751095, 6803810.9375, 6804285.9375, 6805078.294409285, 6806093.75, 6806920.645869428, 6807116.053036819, 6807710.9375, 6807793.75, 6807830.154001178, 6808159.375, 6808424.232506748, 6808482.441213909, 6808523.4375, 6809582.713416312, 6809584.196687139, 6809637.320630074, 6809808.497877876, 6809980.449376516, 6810402.042558527, 6810451.926300228, 6810487.5, 6810708.97622047, 6810805.431390042, 6810968.698944597, 6811109.681720361, 6811189.0625, 6811665.009161483, 6811684.375, 6811739.0237616, 6812057.724087726, 6812697.126905574, 6812737.437957064, 6812950.501524784, 6813598.170009356, 6813676.972097672, 6813782.7431489425, 6815228.014385037, 6815350.0, 6815811.706304048, 6827554.791416067, 6827607.03455764, 6829646.28010237, 6829857.8125, 6832155.947743242, 6832245.235951675, 6834902.031679011, 6837869.067667526, 6851815.625, 6859968.75, 6866653.125, 6872083.497917697, 6876810.746425244, 6877884.113124056, 6877939.0625, 6878277.447452922, 6878539.938736885, 6878744.369574417, 6879338.7520909, 6879398.624161163, 6880637.106788475, 6881335.469729135, 6881368.29748641, 6885071.367565545, 6895311.443083131, 6902385.9375, 6904958.585783026, 6904975.0, 6914298.570586481, 6914407.665182533, 6915679.636646974, 6917484.127054243, 6918305.738436647, 6927170.171589069, 6927185.9375, 6928053.125, 6929200.050944262, 6933561.344230084, 6935574.828678238, 6936707.8125, 6937469.574224734, 6937751.5625, 6938381.25, 6939251.5625, 6939335.9375, 6939730.478500206, 6941793.75, 6942781.25, 6944125.0, 6944545.1354234405, 6945100.0, 6945228.805854352, 6945370.817783514, 6945432.8125, 6945554.051108865, 6945722.229435451, 6946270.6161227515, 6946714.973507462, 6947387.5, 6947512.5, 6947532.991760938, 6947633.318362045, 6947679.6875, 6947762.531491239, 6947790.207962301, 6947979.15466958, 6948064.474130923, 6948144.464870766, 6948342.1875, 6948422.81110573, 6948971.8751691, 6949046.875, 6949213.634403033, 6949250.0, 6949685.511185858, 6949823.4375, 6953004.6875, 6964111.405791395, 6964842.1875, 6964868.75, 6965138.022953207, 6965344.347092036, 6965364.981507972, 6965924.324976301, 6966031.25, 6966091.939133558, 6966498.98671311, 6966503.125, 6966682.486799091, 6966692.1875, 6966713.993069371, 6966828.75006051, 6966923.4375, 6967164.848120264, 6967183.3853138415, 6967317.557068262, 6967939.0625, 6968304.6875, 6968567.1875, 6968595.3125, 6968616.544792302, 6968762.5, 6969190.074621533, 6970304.6875, 6970899.645984463, 6971610.039213752, 6971857.135196103, 6972189.0625, 6972679.168698878, 6973415.190869041, 6973574.700347943, 6974890.092656612, 6975016.808566501, 6975125.0, 6975412.5199240595, 6975860.622329443, 6977446.875, 6979295.977680504, 6981856.806901662, 6982778.928787664, 6985067.714949921, 6989735.088278017, 6990651.664623554, 6991113.1362421615, 6992179.6875, 6992228.300105036, 6992675.580275856, 6992749.070349634, 6994933.688493567, 6995098.4375, 6995133.574095804, 6996796.875, 6998692.8342832085, 7002781.472653512, 7003610.9375, 7006413.327902417, 7007889.0625, 7007931.8027882865, 7008003.275854788, 7008278.067537108, 7009083.5186271975, 7009509.375, 7009581.25, 7010409.564645283, 7010818.73509748, 7011188.984160121, 7011685.9375, 7015040.625, 7015682.8125, 7015988.685620267, 7017614.0625, 7017748.4375, 7017926.5625, 7018143.75, 7018177.823741744, 7018614.652917023, 7018664.323708444, 7018865.763217305, 7019038.291561105, 7019057.749740603, 7019373.311387717, 7019410.169460595, 7019417.416323293, 7019579.943795997, 7019584.153429125, 7019589.0625, 7019629.416624114, 7019810.01258066, 7019865.86758214, 7019902.982478652, 7019940.06453591, 7020261.083291845, 7020262.5, 7020284.375, 7020387.867107794, 7020456.091957901, 7020457.804485199, 7020480.223194445, 7020482.8125, 7020506.183244835, 7020564.557744367, 7020682.8125, 7020701.5625, 7020739.0625, 7020778.125, 7020823.738663877, 7020825.039702128, 7020927.671429331, 7020967.8537307065, 7021043.75, 7021044.059413324, 7021085.9375, 7021093.369475804, 7021131.773232192, 7021143.197379614, 7021212.5, 7021214.357900621, 7021217.899677721, 7021231.453568288, 7021245.3125, 7021249.835162696, 7021255.6877908865, 7021264.606041064, 7021305.688781996, 7021310.056194144, 7021345.3125, 7021385.308950441, 7021455.36122111, 7021491.006023962, 7021518.75, 7021556.126155802, 7021568.427285589, 7021650.0, 7021700.976851914, 7021740.625, 7021758.781505562, 7021817.203185768, 7021821.084406612, 7021823.4375, 7021983.271866309, 7022051.497902572, 7022086.7946508555, 7022128.125, 7022140.676197849, 7022141.395970379, 7022208.889814359, 7022298.219530135, 7022312.392907318, 7022326.5625, 7022328.125, 7022359.193945543, 7022364.245479397, 7022385.276266047, 7022434.513099054, 7022437.417279972, 7022457.8125, 7022611.820176587, 7022643.75, 7022653.842468399, 7022725.120685655, 7022846.463368031, 7022894.0260106055, 7022900.0, 7022922.473808721, 7022971.400436218, 7023200.829065105, 7023282.091523573, 7023324.159179132, 7023389.075440076, 7023408.233779212, 7023439.0625, 7023448.066714113, 7023548.807121926, 7023570.946542148, 7023578.125, 7023629.2366670035, 7023779.6875, 7023789.0625, 7023850.0, 7023904.060523671, 7024046.875, 7024095.808868726, 7024289.209827591, 7024307.8679238735, 7024350.4328181725, 7024475.4682130935, 7024830.7549797855, 7024898.4375, 7024921.875, 7025090.390603618, 7025116.099563486, 7025215.625, 7025634.632098853, 7025717.1875, 7026035.204910748, 7026052.371777689, 7026059.360986835, 7026147.516640498, 7026252.681648576, 7026261.398760756, 7026265.983841792, 7026417.278951783, 7026454.8030830575, 7026467.1875, 7026579.652870967, 7026582.650505385, 7026723.176061242, 7026832.113710135, 7026844.828345981, 7026973.00574672, 7027002.248034724, 7027112.34422927, 7027165.613494825, 7027169.5266484935, 7027305.476745641, 7027382.8125, 7027513.151968474, 7027556.25, 7027560.542351486, 7027615.625, 7027704.287490024, 7027835.368388982, 7027841.525155785, 7027967.354023726, 7028034.5525791375, 7028075.0, 7028113.492006264, 7028127.916877891, 7028218.764139334, 7028256.25, 7028346.875, 7028346.875, 7028351.5625, 7028521.5609341925, 7028571.672866187, 7028607.116400645, 7028656.25, 7028720.266525851, 7028793.250870554, 7028921.875, 7028974.20908475, 7029069.854892039, 7029254.449726723, 7029459.181648954, 7029529.6875, 7029662.273972372, 7029670.3125, 7029682.721868306, 7029917.1875, 7029954.566072142, 7030050.0, 7030081.144378202, 7030289.985927696, 7030375.0, 7030651.110664247, 7030737.5, 7030776.5625, 7030839.0625, 7030846.530591178, 7030900.917889941, 7031196.641166833, 7031318.839072263, 7031657.8125, 7031751.495073103, 7031905.023799992, 7032207.60852531, 7032287.452085679, 7032422.374219444, 7032756.25, 7032946.875, 7033028.322072906, 7033642.1875, 7033873.047438154, 7034417.015611356, 7034605.293435891, 7035044.500790323, 7035212.5, 7035328.125, 7035428.478143055, 7035431.963829878, 7035506.25, 7035706.196711292, 7035765.298774081, 7035856.25, 7035859.375, 7035859.549767386, 7035863.814829118, 7035966.946284794, 7036000.0, 7036020.825595977, 7036247.455081113, 7036318.328156033, 7036398.4375, 7036410.807302366, 7036676.5625, 7036749.152178778, 7036807.8125, 7036982.8125, 7037045.3125, 7037065.625, 7037142.1875, 7037282.649628202, 7037306.25, 7037525.933817429, 7037814.0625, 7037959.226910591, 7037972.0172986295, 7038181.443753587, 7038604.287827996, 7038658.9259287305, 7038810.710774146, 7039598.4448250905, 7043434.677291216, 7044354.618037306, 7046302.905184638, 7046473.36435274, 7046598.4375, 7046831.735887247, 7047101.5625, 7047538.656963401, 7048170.3125, 7048176.5625, 7048208.094411938, 7048264.0625, 7048383.945620128, 7048570.607440198, 7048792.1875, 7048882.76824735, 7049142.643848732, 7049240.224272765, 7049457.8125, 7049646.921476368, 7049902.632693808, 7050176.5625, 7050257.112266001, 7050337.154771624, 7050418.514753422, 7050439.943452857, 7050465.625, 7050562.931930238, 7051226.920988082, 7051227.9930428425, 7051317.682500147, 7051817.1875, 7052293.275263441, 7052398.42275081, 7052539.0625, 7052967.094827307, 7052971.875, 7053209.228003827, 7053350.0, 7053907.927213573, 7054969.029847743, 7054985.383552263, 7055417.379313625, 7056571.915435903, 7057046.4058192335, 7057896.875, 7059128.04987019, 7059525.678849852, 7068016.151078189, 7068294.186048903, 7068654.260344467, 7068657.801038484, 7068678.125, 7068871.875, 7069257.508414002, 7069289.0625, 7069475.0, 7069496.553158606, 7069503.644915438, 7070008.86973409, 7070249.4263299415, 7070489.0625, 7070596.019544923, 7070691.474410616, 7070873.4375, 7070907.668210005, 7071082.423331, 7071095.3125, 7071434.375, 7071450.138689045, 7071614.19300607, 7072565.60741954, 7072979.6875, 7073928.608632296, 7075472.382128096, 7075625.618054727, 7075892.066302288, 7075900.0, 7075977.965202396, 7076015.707642801, 7076458.41192815, 7076511.207599118, 7076636.263070092, 7076810.896850989, 7076826.293648547, 7076940.541198535, 7077244.775457262, 7077349.343585378, 7077497.564086131, 7077744.356298671, 7078126.417793607, 7078256.870869393, 7078450.0, 7078746.88498024, 7078934.375, 7079267.627687066, 7079284.3605711125, 7079423.4375, 7079508.566693676, 7079560.310904393, 7079805.636830807, 7079893.406211757, 7079907.576562618, 7080212.0071522305, 7080510.9375, 7080959.375, 7087690.8843511315, 7088923.46405418, 7089081.33425995, 7089209.268860207, 7089210.427177094, 7089520.142945792, 7090162.238510526, 7090185.813629941, 7090639.0625, 7090721.760040915, 7091119.580242786, 7091305.159408398, 7091343.75, 7091467.067550236, 7091519.738107623, 7091629.6875, 7091860.581338181, 7092472.156193226, 7092545.490817622, 7092717.16619461, ...], [44.487821794506765, 86.13774778350484, 32.81453677348685, 50.16031750915525, 7.390610925671369, 43.33434110962321, 26.610158875405595, 27.25682007991345, 33.505677134316336, 7.506937628328742, 39.4625621133263, 13.98331013956362, 7.150093236012355, 72.69871329033482, 10.90219029237591, 22.883630723496378, 58.91185334671269, 12.046269124986011, 24.882660354419166, 43.19871943865707, 38.55104537930637, 20.135220470579437, 28.75019880474548, 77.8155912670798, 18.979651939123485, 51.84806335731008, 21.3719243870038, 6.457387884952531, 72.87220324165897, 53.308763035945134, 15.686712727324345, 64.47997129502234, 33.93614088614561, 57.491698079481026, 11.994333239813729, 44.93958676881649, 36.490385422510435, 67.06613411508218, 14.944638221756579, 59.96875050214776, 27.015748602133254, 35.5682074659083, 68.36113221471032, 38.33439412852135, 57.316733780391694, 7.975604449070316, 16.851468414048412, 6.64624834514785, 29.01717397736549, 19.441269098430006, 28.678189005937234, 24.516283182025422, 48.97312448225916, 9.898968155981537, 168.5104613617185, 59.780891565121614, 79.5171249461875, 135.693379330896, 6.19713821899617, 37.184101312965026, 21.76002484449488, 94.39151018029258, 9.050407854420941, 12.596479009880795, 14.19916436553959, 7.0507945373814485, 15.355786297993465, 17.814140011563985, 97.5943519787744, 23.487697028905156, 70.16364139062155, 141.7596278468499, 28.954157781078578, 73.35027727913857, 60.61628565170862, 14.78714286594067, 83.21859237495744, 148.17272281218945, 46.37749714179579, 12.41424775931414, 34.347525873314275, 111.52404897057272, 80.8891697646657, 5.17930854677148, 30.535110473085666, 26.145467786091956, 8.24228422264548, 36.099756271917805, 8.651499395597856, 48.243301887150466, 56.67386115804185, 28.911993704047834, 76.85729925620728, 97.40515684739286, 48.628003400141054, 49.399754072109104, 44.31287275364645, 12.089439525004412, 19.157473358811732, 41.57975828747177, 19.92945670327452, 8.347686696488292, 114.48338220212763, 54.75533440579721, 60.61416194448309, 30.936856958110486, 58.35849245329993, 87.39007434042344, 20.12892804288979, 61.25778128007067, 7.91703072518282, 88.94381850374026, 18.885252841615156, 57.19883042444654, 31.32749691589617, 39.91433061889823, 61.205040805181575, 59.349568478960904, 17.744571474205802, 42.653782019168034, 5.146282543931145, 31.726343371078023, 5.777085556804946, 6.693554148232346, 42.462946002938736, 10.874173340237196, 67.72659799877404, 29.459726621070914, 69.43768044914023, 48.84781188246781, 5.457904165866727, 105.10538180459685, 20.47120525983045, 6.972191950310569, 22.05135810974678, 35.30327447711477, 107.48733161202478, 14.914457031628922, 8.498276497498386, 46.64093155151243, 8.5583797699207, 29.8484436459218, 120.73432181275864, 38.15455424223815, 5.560833470589698, 14.05159075456007, 101.29163704789332, 321.41097572820166, 27.353412800304994, 47.86415823661849, 141.05457343811898, 92.48955112370285, 40.91211393010745, 62.39222161899171, 56.92404457290118, 42.995105498587634, 66.15935258219884, 46.93670640980964, 71.18455515278185, 44.5654540303018, 87.72369021575714, 13.215372719991246, 32.70447046598865, 35.167176953598634, 40.26105981972007, 74.7636531897952, 54.578792373288366, 51.268932138445976, 149.8580925518419, 12.718411344402512, 21.15302408075608, 14.134383368169098, 79.33890387842649, 13.637822280582428, 26.602299121685686, 29.82046589858692, 181.6449693337291, 10.161007651573103, 7.98375924539754, 47.33562016791694, 41.78992399542463, 16.466308554370368, 69.79101800114277, 33.40287176666213, 11.725232668535282, 21.327925980622652, 42.60534184736011, 29.266941405238388, 93.16633257880345, 90.64789654104933, 6.4917269076063375, 15.822926745956087, 239.44144060379168, 45.65547537370888, 42.302093405028465, 34.705113725442516, 16.025202670222086, 14.072425990282136, 15.705190694536583, 13.308573904122403, 45.81334873292284, 36.291966910274624, 90.63140306584945, 83.9064233638435, 56.45888986525014, 73.38084200173823, 33.49029179485684, 30.724829790566503, 107.10374952698702, 170.6692912635655, 13.78052335438851, 83.4587175281886, 67.78390922100465, 16.361868291716384, 92.09930409191692, 23.947714486865237, 6.195730200535636, 46.07588604002826, 147.75144559973975, 58.79401653406718, 24.735895162571214, 43.93582605128606, 22.70030127867939, 49.55571257562112, 7.641999328312695, 9.765004224411042, 9.099013245412477, 8.796889103752692, 57.81110068095087, 6.314032430950145, 12.498120542630591, 120.68560388751044, 49.12948119486007, 49.7912642887619, 22.181905268873383, 95.4834186839968, 93.24270544550343, 132.68398682511636, 13.175327700892343, 63.093248919062404, 95.19597743302488, 77.89539682566864, 10.745675197905253, 84.45874113794653, 73.07456511352385, 38.5033504466981, 105.80895378772587, 19.46586797820315, 19.81353006821963, 27.763962364670803, 40.16738439365189, 17.85519750789179, 48.72887783603203, 96.36789386935517, 5.744746769381727, 21.01943715197933, 36.38892792483385, 22.296804622049226, 117.02790281827856, 21.700790037924136, 6.739184717083662, 128.1446806590105, 20.474788912199777, 13.482818445036177, 49.709464085121674, 63.42363464766567, 35.43836702125124, 27.17704419750791, 134.60155501020338, 28.56677054466682, 40.84432818034012, 69.69056002117738, 67.09272473557193, 5.692719121640515, 58.78546800507092, 27.234755075534032, 8.632702187829553, 89.13703305158177, 85.98434520650682, 55.29886175711525, 13.98735796576926, 37.590987484375695, 51.08382434691845, 56.34186587080552, 16.959444621492263, 24.72399528783675, 42.6006710260546, 5.792255681654189, 26.47897949741332, 12.468561275068417, 84.93410292378172, 23.966605459502098, 18.363483833155556, 51.11342425625266, 252.97726554335236, 15.545028207152793, 19.43792581246508, 242.64190100938788, 22.028644669854895, 7.941385209524729, 25.544864392054507, 5.948259363782461, 5.247056915441247, 38.82176652663051, 7.306611021771829, 85.75855798633788, 9.64987178130284, 147.26497758071707, 23.337483041171467, 8.46958789580251, 19.704913229975634, 83.7817149983775, 7.222960926070083, 37.9626827921267, 12.282000984258111, 26.0322388564381, 59.04519925616637, 116.99481958906466, 47.76191658256576, 6.069562933295621, 109.66135999647489, 79.81977805895036, 42.14755963154832, 12.268550495201492, 23.94152280016469, 5.852679745289373, 43.59793871772074, 16.32886453028503, 138.93657507301987, 26.166296119106526, 17.331333148798507, 79.99116649759303, 43.53981740018243, 125.6424760170188, 5.870074342230617, 64.48780206895955, 13.0110682279578, 16.930164925632564, 104.35224626317434, 46.71032451917427, 42.837494576051924, 8.974470686594463, 89.30697060786002, 111.97743531749268, 14.318054064743183, 8.1411132603214, 25.985324136574654, 46.6546790766843, 111.08660388022757, 17.75322703792663, 5.305833733532379, 5.118208811670198, 29.294719760060463, 11.472454913840071, 86.62080628484483, 40.57598018728311, 16.957269963256735, 66.72777938107556, 8.052057232079978, 7.953087556962585, 7.9091395977481636, 13.238820780377576, 10.952584403084032, 99.76254537255832, 40.76319982547244, 10.556922998181655, 18.012275377723917, 30.862654334099005, 92.14853079602837, 268.898345234968, 7.494944965358278, 34.190860742266075, 13.640775165386883, 46.42825691065307, 61.571505494421295, 5.913629252774168, 8.095052498298275, 118.74110025310782, 14.590880360175388, 79.98293707648264, 123.40006423329854, 79.28308420979677, 31.954741735021152, 120.3234618811913, 27.530978596141495, 18.231447176156507, 56.499212585058466, 157.3669413192427, 16.511133534844703, 13.486609007414803, 10.35382872093743, 54.44270437033972, 6.271659470867568, 20.629955001860722, 17.65754606534445, 10.188336206905836, 21.06323826171714, 29.209732585840648, 24.196296222324648, 16.44310730595027, 41.99321925223842, 25.38384677540504, 17.291952828689897, 24.45335742566794, 23.15086692454105, 33.84081711861587, 236.7404601627244, 6.142644007043987, 23.336832788018405, 66.75193350819191, 56.13630208175502, 38.43456750551745, 109.44622950976762, 47.50808612164737, 30.713435660939986, 11.201650311821759, 63.65111237618275, 54.19603066412275, 10.642380580011615, 83.54963056914409, 8.600262850584139, 8.161718748914442, 51.24434873178235, 8.44424713508065, 98.41923928877563, 28.55439882955239, 32.65815375427646, 37.168317928786735, 47.56873686756554, 93.26324754218554, 70.18696921668709, 98.09001459457062, 64.9860516811857, 93.3576860552007, 21.484524284436436, 47.3595822206578, 30.058642935540153, 17.343308669199025, 5.4139285269071316, 14.245073813955734, 204.47441557922488, 11.240887075425404, 46.44492550282994, 100.36018279979368, 138.31526200958842, 14.588616188535564, 70.35091316792781, 114.2686934296154, 32.29448779622538, 72.71328280707084, 77.97995147824, 6.56279338452444, 48.2135935004094, 19.183867745030785, 5.593828698039105, 44.52395442952105, 42.680978583124556, 25.440407069568295, 105.09700064757092, 9.98699049441608, 144.88330090131439, 6.139485524141807, 9.65920409788831, 29.232975952857934, 29.56153836035588, 18.81155555616194, 27.55353164996282, 8.45572139244234, 68.68905401733839, 14.6868820849401, 88.79356125290019, 27.780737721789528, 14.61490146351328, 165.63453290076754, 5.396107474636583, 17.273413347349624, 82.78162310436932, 16.772202558185608, 14.683603987356662, 103.00593384309381, 102.68772511568264, 8.739777336701323, 129.8098469641962, 5.758577447422036, 92.96781183240445, 39.541290515808655, 21.162004235387933, 27.09699038251769, 8.551315054022199, 16.3083646892779, 38.13349498139725, 157.07068114360175, 41.994618750915286, 12.399723069669395, 25.24952400639484, 24.250253208992127, 37.3596346865646, 19.887702284580882, 35.192587221427765, 6.348784777089155, 77.08665669190594, 11.432567371865234, 8.08903885007408, 26.780000534588346, 10.48711569534171, 32.585495366817, 99.79193653654042, 53.82622546468714, 19.023326618943177, 46.43312795724431, 7.652092638984887, 14.408239067049514, 9.288771064582148, 23.88939533447212, 21.37851998473117, 38.7489261233701, 91.33671803940923, 32.77018243411384, 15.13930667655808, 11.829111518411237, 25.54645951763676, 86.55557434847148, 228.72345837103234, 91.14810742848698, 45.94295993622105, 44.618478795714736, 49.24110483715446, 57.14307837782352, 67.36822430892937, 40.98170758998134, 75.92480496699878, 63.127750094797555, 60.78163971758542, 6.161884403579074, 9.798611205531772, 54.21479418541688, 20.232495303741704, 17.925717125560077, 320.91163069341235, 8.835247729351725, 64.1261062134754, 49.58825200923429, 15.324867447556914, 17.29806121099218, 35.909129110380796, 261.3689207248872, 60.915633550381, 21.171733781107978, 16.78286802457069, 130.62945491751898, 127.68716931866044, 166.55985549452663, 47.67330555983965, 66.46563503349836, 92.23079410262305, 69.6984332992706, 143.11571346247365, 43.63129618741817, 55.500076799862214, 11.948098191112658, 41.577904122102005, 51.100902315952915, 9.816536223441695, 7.2877828609564705, 239.19309933152155, 85.72710030871391, 125.35440176997687, 24.433483025232707, 67.05967653776351, 37.079486142038846, 52.83071926185369, 50.12750948734463, 39.86168743496039, 18.014233528422032, 52.776701084490256, 19.114071810243367, 12.159015861075867, 27.42490055195696, 39.81561059667458, 48.93020049802104, 96.06996442466081, 97.17911335074533, 20.178587067102615, 39.71979965197055, 6.983918420811047, 66.53069947676676, 100.23990561210955, 18.26706180523176, 19.889695649164445, 74.58503643354547, 224.6836351397865, 13.510140130587024, 75.27666581472012, 7.4214143292372645, 9.030307530976614, 53.33229115760239, 196.9290530556184, 64.24446732652851, 47.265453672466954, 18.273422808877562, 5.48618808585354, 42.43150729905937, 17.42215160157046, 30.102112128375417, 53.72812241519544, 18.085496886969967, 41.74312590287032, 21.526659675828213, 105.27291784844152, 6.1564789841529235, 146.83939304839296, 108.03940355129953, 34.5851569898134, 112.58124673701138, 18.153360861191487, 29.353774408636454, 64.43904644848523, 55.52654888233856, 40.94247867596586, 14.358473567949403, 11.371983866837216, 27.4370683025063, 7.8802911327205, 29.149870300979785, 37.45007645147957, 78.93163462419207, 28.233300735254396, 77.87209985663941, 147.78673074666088, 41.48745506702503, 70.91108792864037, 110.36854342267705, 37.32991244848402, 66.94347943785422, 59.35706481785123, 31.13833808703919, 10.687353297327622, 7.831716342888499, 16.04026422387995, 6.508978500138619, 49.78413719281863, 21.371669340526317, 26.258868239634275, 19.179788601705482, 15.891831233979838, 54.131589430330976, 24.807074155910115, 72.71181820388054, 24.13002984078678, 55.013220263350945, 9.545303729571373, 39.881494355602825, 60.557897048576606, 6.1033926492662856, 52.68322646555326, 53.57534141166372, 100.70658925769726, 60.05822358518559, 14.911048499262257, 5.307926341929164, 107.73001612508935, 27.27023163854223, 12.001391136334027, 78.35874465626, 33.6184912696055, 85.03504876921484, 138.17659424813186, 11.633504502854983, 7.131927394445555, 172.48081682483894, 25.71842422523428, 79.01274656518638, 8.45727062556159, 163.28606358468397, 22.77390976811956, 42.116848930635925, 34.63228028103046, 53.29965069402466, 5.0465573702371875, 81.63831810341857, 20.961267334241736, 159.46097885133236, 6.731038304748857, 24.444082322259867, 12.098776485602606, 13.161454057468388, 99.03949009757909, 41.163175466753216, 20.299931254865765, 12.374032656071588, 178.6907129311934, 48.83388529108954, 26.29587142857732, 7.039127408452325, 121.47594562136948, 10.958873840436183, 50.537747420042564, 63.8207140742245, 49.9690963959366, 19.013271610440146, 31.905495051116215, 32.22649547131634, 26.32501452074806, 19.663126993387817, 51.681569903299774, 47.90398219735985, 12.592744353867733, 73.73934461651197, 14.171066397539935, 26.573084939291746, 80.04145302987178, 34.08790504678278, 10.856028103929184, 7.170396681930846, 42.27562309919628, 25.712853744012175, 73.41166248638694, 130.0888778340807, 12.859131694809545, 43.65811506069707, 5.655008826497176, 5.071097508345426, 146.32276311085042, 136.95484633629374, 72.4909579895211, 24.821374658340535, 36.41781398589543, 46.818741305064705, 19.539719924087105, 12.48042198963664, 14.991061383153074, 31.814093828493913, 135.04349897997304, 10.593714743968535, 6.5466368980671055, 6.591298663428248, 36.97859078503659, 124.96013730486762, 37.90532072883536, 44.20416617550054, 45.070480942790255, 5.0863128473228985, 60.5875684338824, 98.42641933003523, 53.770946720710434, 10.717862507449698, 53.06776703658899, 58.75716757102087, 21.54292050039149, 81.61903762246644, 34.93028445964304, 25.996951342322305, 17.122275162612098, 35.34262991964535, 5.210021876464217, 40.07252339783185, 28.63473438812528, 15.853720286743048, 6.7607121698130115, 27.444354993933256, 49.086851104380244, 22.183440880456544, 6.3136255826294665, 6.501523296805609, 123.9839044713495, 37.32590893757533, 27.857533865315073, 107.62639259630495, 110.36090240522624, 18.670363505994615, 31.973507586243535, 37.17867352658581, 28.06870535140532, 43.08253247203773, 73.00508895258068, 51.9178084498158, 12.63518044434515, 65.58822991359038, 18.1869903805335, 56.53445332496995, 59.92041727519124, 59.492758539768175, 13.608499451283839, 20.830314120140322, 8.827816631378644, 30.665742931859974, 217.76535028897132, 55.39036754182344, 22.931193193179297, 36.06935828169405, 5.203782294244494, 63.151915961933156, 90.03649684671569, 175.36985946739512, 37.29279412496582, 13.865854059453698, 14.223249971072244, 267.4231369030485, 29.865854604776008, 48.888246427280414, 237.59985276906804, 77.21868611503047, 19.010922324297432, 92.18726251381786, 11.278428392658142, 14.25243072555367, 32.821840332774165, 24.74397687307552, 44.252646976148704, 26.8523942761721, 55.922000650858934, 42.16287057004379, 34.1661564122849, 31.684171604406664, 30.713797014589815, 226.39315733840755, 21.98740705971446, 34.19813805645993, 80.84317760635926, 34.32298790559233, 23.657636740045305, 5.320308034180351, 24.634400737400405, 5.043048164234128, 72.3349125425148, 9.275033333789496, 19.225062006371946, 16.156517459342574, 78.4618293212315, 6.867439669125974, 31.77588901977064, 90.01794231562525, 41.994604891147574, 85.28866194655667, 22.66468178393401, 9.190171093962833, 5.422154867462209, 25.79642074445677, 45.46740646156389, 30.015109335377602, 16.483198388796726, 12.46281698294564, 48.17609396920279, 9.286747390488326, 23.421424335997543, 37.696100893000704, 46.24490059785041, 15.652286298377675, 14.074665312169827, 54.26757522018758, 102.92771855623741, 93.74897577861215, 53.22602756654517, 67.868175931488, 30.84797441188815, 26.192530539779025, 29.958608674784216, 18.60705880312398, 89.14161355794646, 165.81400487556468, 59.545794813274824, 53.85853370268998, 56.72339851557531, 55.71734123982487, 48.24738584400382, 103.68182017745656, 44.456405926922365, 91.5182171995352, 5.824584710837601, 40.58754723168794, 44.68352790875888, 10.491532262057232, 47.010270211249214, 12.159412514878937, 49.856772450464284, 222.96518644818985, 24.8320353887273, 61.278717632830805, 70.97934046324339, 30.328353946233364, 81.35297743725224, 93.13694204161118, 93.22038600860357, 52.18183778410835, 52.85728572322449, 38.645928228726326, 20.193724682996493, 37.830678192352856, 60.51822062429923, 14.77547968352933, 6.858166270251894, 22.544061277933775, 69.3734499916581, 35.001119687275256, 21.57019494784789, 31.784481202202464, 98.88299546245867, 5.157398670603932, 91.01910749338927, 36.95069131079748, 49.83876490402638, 11.877366161282575, 17.775964742222214, 32.81828760337853, 12.000904902292522, 43.25214437811309, 7.440107593451311, 71.34864512352081, 38.03426726594393, 26.817382229135124, 38.19454081004618, 67.85547293608394, 73.24354259719553, 37.947847470930654, 16.12743680358696, 20.97130986546325, 133.22592003483834, 15.097905018717546, 16.348195802266773, 44.33719936230854, 17.42234146375513, 66.47754770707142, 99.83917763466661, 31.598428241938862, 22.25190119710217, 28.30008106258526, 49.03736033068961, 68.72629707041185, 51.88920311247442, 42.63197300791444, 80.07226928701601, 28.698463676321023, 6.87194088977166, 122.79144934553119, 20.78838804666963, 99.73589698708986, 20.76408784291516, 120.17790538253364, 99.70798582315263, 14.418657829277306, 22.674851978853493, 30.69175569553486, 54.59387816375577, 106.2163051667248, 15.463417250187616, 33.371139352014666, 203.85470362220926, 76.33334868693561, 17.30527366641048, 12.253976839675474, 14.498842632606951, 74.70092576408717, 25.723622870107146, 9.402273789462004, 28.915059921035926, 6.530281912549563, 12.854575720272168, 11.064758703250114, 28.154030418776777, 27.508937655934353, 21.13137010412366, 27.472205002396674, 60.820040531673676, 25.65707527385451, 92.6034254488959, 9.918039093367367, 50.377512646185366, 193.82945472067286, 50.000400247735755, 87.66143366913113, 14.886796989202194, 42.85417324054545, 452.2293278931036, 20.31682397886191, 10.287813486869029, 343.4237700161091, 79.37002849618135, 13.345677087207891, 71.08486353890866, 111.975449962745, 103.89228671110033, 62.77829922665967, 12.718993664796253, 63.64009813634888, 104.87958590867235, 21.415972040099625, 104.85201651599694, 14.489498073910736, 128.20993818397835, 79.11037043107424, 14.417007961278177, 5.140717485969778, 35.85456050991572, 127.38061986119268, 5.772668395038404, 99.08532451333204, 64.05251461812904, 42.857044302492625, 94.08507569275473, 134.55151078220294, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2978167.4804192246, 3454760.9375, 3462803.3158943583, 3515659.2946955385, 3555952.496191728, 3657274.813546558, 3770913.9576160177, 3811887.4324919786, 3847558.656228499, 4075629.4131575054, 4113421.875, 4113450.8354334864, 4135642.2953482647, 4152935.9375, 4152960.7882659934, 4179159.0039434005, 4217966.79137173, 4228348.9551524585, 4228367.895231769, 4249451.5262805065, 4295785.9375, 4303719.602134566, 4338875.420885558, 4340166.819715625, 4343500.767290741, 4346171.875, 4346279.175266289, 4356966.99536194, 4389159.375, 4390282.508633663, 4394903.3076764755, 4404731.25, 4481969.711581762, 4509321.875, 4542242.679196378, 4553390.154672707, 4553409.375, 4568523.4375, 4574314.063320635, 4697560.9375, 4751123.356307624, 4775967.1875, 4797314.056230351, 4807198.2444456, 4823781.25, 4956930.611696399, 5062942.612125982, 5070158.757842411, 5071456.25, 5071889.891373436, 5074365.2453639, 5095838.82015792, 5124015.625, 5125083.415244969, 5143415.625, 5147282.8125, 5153995.3125, 5252058.251659672, 5266515.049597028, 5267139.0625, 5272545.715239691, 5303527.3273005895, 5305316.835370953, 5306580.460086258, 5318652.915577796, 5350621.599211724, 5398834.197325072, 5398870.652135491, 5404096.875, 5412023.116624346, 5414356.25, 5420787.5, 5466476.5625, 5498915.430964843, 5500815.625, 5508378.083901907, 5544120.988266949, 5550700.0, 5558314.0625, 5559437.407100756, 5560712.5, 5560728.972009329, 5561098.342337724, 5563031.838947276, 5563713.062696213, 5564249.866888977, 5566606.165291275, 5575252.900368781, 5593183.444214635, 5593631.249985517, 5595618.75, 5596565.625, 5597771.270208929, 5605259.123718632, 5627025.0, 5631171.875, 5656141.978088182, 5659689.601463135, 5661658.55611188, 5664877.820851802, 5665291.515033765, 5667315.738798246, 5694241.303489548, 5696893.75, 5716812.5, 5723081.25, 5725113.661254647, 5753945.993909353, 5755480.60143547, 5756503.125, 5757283.604059472, 5757913.66852747, 5760429.061303952, 5762707.8125, 5762981.25, 5764660.9375, 5770828.125, 5803967.082080865, 5803979.641144772, 5804864.626499183, 5808935.098984129, 5812790.625, 5822372.926095771, 5824691.826712846, 5825335.9375, 5830334.206506991, 5836912.5, 5849414.99024758, 5853707.8125, 5853745.3125, 5854781.159702388, 5867094.422418603, 5867633.766071846, 5878346.275037365, 5896562.054199139, 5900043.75, 5934259.375, 5936912.492884337, 5939420.692463175, 5939429.235369713, 5946814.543393357, 5946817.1875, 5951326.5625, 5951914.0625, 5953022.433873435, 5953940.3701324565, 5957446.836555195, 5958085.718405936, 5958661.198261667, 5958796.559456829, 5960400.0, 5962940.46826646, 5988368.902568891, 5992100.0, 5992328.733496258, 5993803.125, 5996703.728441773, 5998709.375, 5998854.6875, 5999757.8125, 6000727.912086519, 6004451.021586364, 6004872.39630943, 6006704.6875, 6006704.6875, 6006732.056012795, 6007186.770362967, 6007818.75, 6009137.5, 6009383.021162725, 6009424.465219566, 6010598.208297038, 6010659.139318292, 6011027.73502252, 6014154.582148383, 6014418.75, 6014834.494544454, 6016897.716390934, 6020652.504824644, 6029228.125, 6032970.3125, 6033901.91226056, 6036178.125, 6037061.879524618, 6038769.101364183, 6039511.213705909, 6045509.375, 6045522.631018991, 6048021.2098155925, 6048540.625, 6048559.404508443, 6049775.213505241, 6051992.1875, 6054365.625, 6057007.8125, 6058754.23124284, 6063608.070459805, 6070563.814132197, 6070948.624401828, 6071204.18110801, 6074278.125, 6074939.0625, 6075537.323145559, 6115275.0, 6121038.006858881, 6146968.75, 6155343.75, 6156000.964173659, 6159782.8125, 6161151.5625, 6163227.782956864, 6180354.6875, 6190895.3125, 6193031.131635881, 6193195.3125, 6195979.40276541, 6198355.662588504, 6203966.099422943, 6209180.049066577, 6211266.67175734, 6224187.273399544, 6231638.471219113, 6233075.643934565, 6233568.75, 6242082.918413559, 6260031.721840758, 6260038.774252816, 6261099.292103736, 6266289.0625, 6286714.424411904, 6289464.792035963, 6290012.5, 6292181.25, 6294437.0182036245, 6315789.86545145, 6341398.928694532, 6341900.0, 6349249.862109227, 6350489.754447677, 6351450.709079717, 6351635.9375, 6351673.718426519, 6351827.866019655, 6353735.800352299, 6356044.040363603, 6356195.3125, 6371382.8125, 6372611.041095264, 6373232.125859751, 6374905.534109924, 6375938.995144346, 6376053.7246817, 6378634.251818512, 6379214.0625, 6379278.705806417, 6383555.701169401, 6383665.181420866, 6384624.576962273, 6389468.75, 6402602.647383131, 6404371.751939651, 6406241.615834727, 6406311.782542684, 6407058.9312608745, 6407446.110827411, 6408398.081692916, 6408477.107066961, 6408618.261534981, 6410860.600856834, 6411007.975381268, 6411787.5, 6412288.382339274, 6412581.517825585, 6412741.964627549, 6412794.6705803, 6412799.452847815, 6413058.4142963905, 6413967.1875, 6414884.706885606, 6415170.3125, 6415379.412417834, 6415648.4375, 6416456.25, 6433958.7345805755, 6436994.776121953, 6439102.204742273, 6439982.8125, 6440051.264509349, 6440714.528827412, 6441829.542833291, 6443065.5699790595, 6453086.031545325, 6464147.553773984, 6465415.625, 6467772.238699788, 6471722.024814551, 6499513.328440955, 6504132.115850727, 6529688.614560727, 6541032.097232328, 6544736.806700429, 6548479.788609281, 6548650.06815827, 6549264.4493759265, 6549274.097967564, 6549848.4375, 6550787.854063798, 6552481.25, 6552509.04194384, 6555223.768252053, 6558705.549885453, 6563627.663231965, 6578642.560078683, 6582491.342310027, 6589470.943699212, 6590214.281721706, 6591345.3125, 6591662.248361578, 6592038.937388862, 6593362.319845058, 6593617.1875, 6594514.0625, 6594734.375, 6594911.562401966, 6595403.446524694, 6595825.509677562, 6596178.125, 6596680.009380682, 6597253.623240973, 6601971.743179891, 6614089.574190782, 6614532.8125, 6615868.75, 6616704.459437788, 6617056.980388018, 6619430.798590762, 6619474.380816828, 6620281.689359202, 6620842.1875, 6624123.4375, 6624310.9375, 6624338.607887104, 6628473.4375, 6628879.6875, 6629316.247640765, 6629349.714408596, 6629952.981880502, 6630107.8125, 6631995.278409888, 6632745.82672727, 6635808.282635829, 6635843.165741985, 6645054.6875, 6657951.772403791, 6666913.897715967, 6671641.4434242025, 6671803.569391151, 6671876.5625, 6673976.09102822, 6674443.061216482, 6674458.585858033, 6676385.405339558, 6677928.009996628, 6684020.3125, 6684582.185740968, 6684979.288823046, 6685109.999751619, 6687233.606439888, 6699771.875, 6700082.517310284, 6700918.440321083, 6700919.853344798, 6700943.361029313, 6717634.375, 6720862.335369032, 6720955.949176494, 6724776.181868945, 6724888.854147841, 6727640.529862913, 6728521.875, 6728729.245760442, 6729051.5625, 6729053.029399284, 6729096.788659579, 6729188.565721109, 6729275.964110611, 6729839.0625, 6730352.803820883, 6731026.144184111, 6731793.307597322, 6732033.816223755, 6732134.375, 6732321.910228131, 6732693.158890085, 6734130.254796136, 6735055.5525490325, 6735272.893300964, 6735830.386708173, 6736226.296598304, 6736234.720098706, 6736439.97568281, 6739552.942929812, 6740141.129788697, 6742586.107612249, 6752166.83904066, 6752207.723673643, 6753170.758068223, 6753231.758674503, 6753504.298265152, 6753544.431962199, 6754195.3125, 6754520.3125, 6754570.3125, 6754923.4375, 6755004.6875, 6756060.096874996, 6756471.870612892, 6756479.342848057, 6757127.790606723, 6760302.817484928, 6765127.112044467, 6769274.756184054, 6770701.393275694, 6770726.84921194, 6781218.64323262, 6781759.126834308, 6782152.747476866, 6782236.465640954, 6784068.75, 6784711.013404666, 6786431.25, 6788209.375, 6789359.184685509, 6789434.375, 6790229.186639871, 6790532.35972707, 6791104.6875, 6791537.3548225835, 6793334.773462466, 6794541.991939561, 6797041.812531401, 6799118.8212222755, 6803492.7921751095, 6803810.9375, 6804285.9375, 6805078.294409285, 6806093.75, 6806920.645869428, 6807116.053036819, 6807710.9375, 6807793.75, 6807830.154001178, 6808159.375, 6808424.232506748, 6808482.441213909, 6808523.4375, 6809582.713416312, 6809584.196687139, 6809637.320630074, 6809808.497877876, 6809980.449376516, 6810402.042558527, 6810451.926300228, 6810487.5, 6810708.97622047, 6810805.431390042, 6810968.698944597, 6811109.681720361, 6811189.0625, 6811665.009161483, 6811684.375, 6811739.0237616, 6812057.724087726, 6812697.126905574, 6812737.437957064, 6812950.501524784, 6813598.170009356, 6813676.972097672, 6813782.7431489425, 6815228.014385037, 6815350.0, 6815811.706304048, 6827554.791416067, 6827607.03455764, 6829646.28010237, 6829857.8125, 6832155.947743242, 6832245.235951675, 6834902.031679011, 6837869.067667526, 6851815.625, 6859968.75, 6866653.125, 6872083.497917697, 6876810.746425244, 6877884.113124056, 6877939.0625, 6878277.447452922, 6878539.938736885, 6878744.369574417, 6879338.7520909, 6879398.624161163, 6880637.106788475, 6881335.469729135, 6881368.29748641, 6885071.367565545, 6895311.443083131, 6902385.9375, 6904958.585783026, 6904975.0, 6914298.570586481, 6914407.665182533, 6915679.636646974, 6917484.127054243, 6918305.738436647, 6927170.171589069, 6927185.9375, 6928053.125, 6929200.050944262, 6933561.344230084, 6935574.828678238, 6936707.8125, 6937469.574224734, 6937751.5625, 6938381.25, 6939251.5625, 6939335.9375, 6939730.478500206, 6941793.75, 6942781.25, 6944125.0, 6944545.1354234405, 6945100.0, 6945228.805854352, 6945370.817783514, 6945432.8125, 6945554.051108865, 6945722.229435451, 6946270.6161227515, 6946714.973507462, 6947387.5, 6947512.5, 6947532.991760938, 6947633.318362045, 6947679.6875, 6947762.531491239, 6947790.207962301, 6947979.15466958, 6948064.474130923, 6948144.464870766, 6948342.1875, 6948422.81110573, 6948971.8751691, 6949046.875, 6949213.634403033, 6949250.0, 6949685.511185858, 6949823.4375, 6953004.6875, 6964111.405791395, 6964842.1875, 6964868.75, 6965138.022953207, 6965344.347092036, 6965364.981507972, 6965924.324976301, 6966031.25, 6966091.939133558, 6966498.98671311, 6966503.125, 6966682.486799091, 6966692.1875, 6966713.993069371, 6966828.75006051, 6966923.4375, 6967164.848120264, 6967183.3853138415, 6967317.557068262, 6967939.0625, 6968304.6875, 6968567.1875, 6968595.3125, 6968616.544792302, 6968762.5, 6969190.074621533, 6970304.6875, 6970899.645984463, 6971610.039213752, 6971857.135196103, 6972189.0625, 6972679.168698878, 6973415.190869041, 6973574.700347943, 6974890.092656612, 6975016.808566501, 6975125.0, 6975412.5199240595, 6975860.622329443, 6977446.875, 6979295.977680504, 6981856.806901662, 6982778.928787664, 6985067.714949921, 6989735.088278017, 6990651.664623554, 6991113.1362421615, 6992179.6875, 6992228.300105036, 6992675.580275856, 6992749.070349634, 6994933.688493567, 6995098.4375, 6995133.574095804, 6996796.875, 6998692.8342832085, 7002781.472653512, 7003610.9375, 7006413.327902417, 7007889.0625, 7007931.8027882865, 7008003.275854788, 7008278.067537108, 7009083.5186271975, 7009509.375, 7009581.25, 7010409.564645283, 7010818.73509748, 7011188.984160121, 7011685.9375, 7015040.625, 7015682.8125, 7015988.685620267, 7017614.0625, 7017748.4375, 7017926.5625, 7018143.75, 7018177.823741744, 7018614.652917023, 7018664.323708444, 7018865.763217305, 7019038.291561105, 7019057.749740603, 7019373.311387717, 7019410.169460595, 7019417.416323293, 7019579.943795997, 7019584.153429125, 7019589.0625, 7019629.416624114, 7019810.01258066, 7019865.86758214, 7019902.982478652, 7019940.06453591, 7020261.083291845, 7020262.5, 7020284.375, 7020387.867107794, 7020456.091957901, 7020457.804485199, 7020480.223194445, 7020482.8125, 7020506.183244835, 7020564.557744367, 7020682.8125, 7020701.5625, 7020739.0625, 7020778.125, 7020823.738663877, 7020825.039702128, 7020927.671429331, 7020967.8537307065, 7021043.75, 7021044.059413324, 7021085.9375, 7021093.369475804, 7021131.773232192, 7021143.197379614, 7021212.5, 7021214.357900621, 7021217.899677721, 7021231.453568288, 7021245.3125, 7021249.835162696, 7021255.6877908865, 7021264.606041064, 7021305.688781996, 7021310.056194144, 7021345.3125, 7021385.308950441, 7021455.36122111, 7021491.006023962, 7021518.75, 7021556.126155802, 7021568.427285589, 7021650.0, 7021700.976851914, 7021740.625, 7021758.781505562, 7021817.203185768, 7021821.084406612, 7021823.4375, 7021983.271866309, 7022051.497902572, 7022086.7946508555, 7022128.125, 7022140.676197849, 7022141.395970379, 7022208.889814359, 7022298.219530135, 7022312.392907318, 7022326.5625, 7022328.125, 7022359.193945543, 7022364.245479397, 7022385.276266047, 7022434.513099054, 7022437.417279972, 7022457.8125, 7022611.820176587, 7022643.75, 7022653.842468399, 7022725.120685655, 7022846.463368031, 7022894.0260106055, 7022900.0, 7022922.473808721, 7022971.400436218, 7023200.829065105, 7023282.091523573, 7023324.159179132, 7023389.075440076, 7023408.233779212, 7023439.0625, 7023448.066714113, 7023548.807121926, 7023570.946542148, 7023578.125, 7023629.2366670035, 7023779.6875, 7023789.0625, 7023850.0, 7023904.060523671, 7024046.875, 7024095.808868726, 7024289.209827591, 7024307.8679238735, 7024350.4328181725, 7024475.4682130935, 7024830.7549797855, 7024898.4375, 7024921.875, 7025090.390603618, 7025116.099563486, 7025215.625, 7025634.632098853, 7025717.1875, 7026035.204910748, 7026052.371777689, 7026059.360986835, 7026147.516640498, 7026252.681648576, 7026261.398760756, 7026265.983841792, 7026417.278951783, 7026454.8030830575, 7026467.1875, 7026579.652870967, 7026582.650505385, 7026723.176061242, 7026832.113710135, 7026844.828345981, 7026973.00574672, 7027002.248034724, 7027112.34422927, 7027165.613494825, 7027169.5266484935, 7027305.476745641, 7027382.8125, 7027513.151968474, 7027556.25, 7027560.542351486, 7027615.625, 7027704.287490024, 7027835.368388982, 7027841.525155785, 7027967.354023726, 7028034.5525791375, 7028075.0, 7028113.492006264, 7028127.916877891, 7028218.764139334, 7028256.25, 7028346.875, 7028346.875, 7028351.5625, 7028521.5609341925, 7028571.672866187, 7028607.116400645, 7028656.25, 7028720.266525851, 7028793.250870554, 7028921.875, 7028974.20908475, 7029069.854892039, 7029254.449726723, 7029459.181648954, 7029529.6875, 7029662.273972372, 7029670.3125, 7029682.721868306, 7029917.1875, 7029954.566072142, 7030050.0, 7030081.144378202, 7030289.985927696, 7030375.0, 7030651.110664247, 7030737.5, 7030776.5625, 7030839.0625, 7030846.530591178, 7030900.917889941, 7031196.641166833, 7031318.839072263, 7031657.8125, 7031751.495073103, 7031905.023799992, 7032207.60852531, 7032287.452085679, 7032422.374219444, 7032756.25, 7032946.875, 7033028.322072906, 7033642.1875, 7033873.047438154, 7034417.015611356, 7034605.293435891, 7035044.500790323, 7035212.5, 7035328.125, 7035428.478143055, 7035431.963829878, 7035506.25, 7035706.196711292, 7035765.298774081, 7035856.25, 7035859.375, 7035859.549767386, 7035863.814829118, 7035966.946284794, 7036000.0, 7036020.825595977, 7036247.455081113, 7036318.328156033, 7036398.4375, 7036410.807302366, 7036676.5625, 7036749.152178778, 7036807.8125, 7036982.8125, 7037045.3125, 7037065.625, 7037142.1875, 7037282.649628202, 7037306.25, 7037525.933817429, 7037814.0625, 7037959.226910591, 7037972.0172986295, 7038181.443753587, 7038604.287827996, 7038658.9259287305, 7038810.710774146, 7039598.4448250905, 7043434.677291216, 7044354.618037306, 7046302.905184638, 7046473.36435274, 7046598.4375, 7046831.735887247, 7047101.5625, 7047538.656963401, 7048170.3125, 7048176.5625, 7048208.094411938, 7048264.0625, 7048383.945620128, 7048570.607440198, 7048792.1875, 7048882.76824735, 7049142.643848732, 7049240.224272765, 7049457.8125, 7049646.921476368, 7049902.632693808, 7050176.5625, 7050257.112266001, 7050337.154771624, 7050418.514753422, 7050439.943452857, 7050465.625, 7050562.931930238, 7051226.920988082, 7051227.9930428425, 7051317.682500147, 7051817.1875, 7052293.275263441, 7052398.42275081, 7052539.0625, 7052967.094827307, 7052971.875, 7053209.228003827, 7053350.0, 7053907.927213573, 7054969.029847743, 7054985.383552263, 7055417.379313625, 7056571.915435903, 7057046.4058192335, 7057896.875, 7059128.04987019, 7059525.678849852, 7068016.151078189, 7068294.186048903, 7068654.260344467, 7068657.801038484, 7068678.125, 7068871.875, 7069257.508414002, 7069289.0625, 7069475.0, 7069496.553158606, 7069503.644915438, 7070008.86973409, 7070249.4263299415, 7070489.0625, 7070596.019544923, 7070691.474410616, 7070873.4375, 7070907.668210005, 7071082.423331, 7071095.3125, 7071434.375, 7071450.138689045, 7071614.19300607, 7072565.60741954, 7072979.6875, 7073928.608632296, 7075472.382128096, 7075625.618054727, 7075892.066302288, 7075900.0, 7075977.965202396, 7076015.707642801, 7076458.41192815, 7076511.207599118, 7076636.263070092, 7076810.896850989, 7076826.293648547, 7076940.541198535, 7077244.775457262, 7077349.343585378, 7077497.564086131, 7077744.356298671, 7078126.417793607, 7078256.870869393, 7078450.0, 7078746.88498024, 7078934.375, 7079267.627687066, 7079284.3605711125, 7079423.4375, 7079508.566693676, 7079560.310904393, 7079805.636830807, 7079893.406211757, 7079907.576562618, 7080212.0071522305, 7080510.9375, 7080959.375, 7087690.8843511315, 7088923.46405418, 7089081.33425995, 7089209.268860207, 7089210.427177094, 7089520.142945792, 7090162.238510526, 7090185.813629941, 7090639.0625, 7090721.760040915, 7091119.580242786, 7091305.159408398, 7091343.75, 7091467.067550236, 7091519.738107623, 7091629.6875, 7091860.581338181, 7092472.156193226, 7092545.490817622, 7092717.16619461, ...], [44.487821794506765, 86.13774778350484, 32.81453677348685, 50.16031750915525, 7.390610925671369, 43.33434110962321, 26.610158875405595, 27.25682007991345, 33.505677134316336, 7.506937628328742, 39.4625621133263, 13.98331013956362, 7.150093236012355, 72.69871329033482, 10.90219029237591, 22.883630723496378, 58.91185334671269, 12.046269124986011, 24.882660354419166, 43.19871943865707, 38.55104537930637, 20.135220470579437, 28.75019880474548, 77.8155912670798, 18.979651939123485, 51.84806335731008, 21.3719243870038, 6.457387884952531, 72.87220324165897, 53.308763035945134, 15.686712727324345, 64.47997129502234, 33.93614088614561, 57.491698079481026, 11.994333239813729, 44.93958676881649, 36.490385422510435, 67.06613411508218, 14.944638221756579, 59.96875050214776, 27.015748602133254, 35.5682074659083, 68.36113221471032, 38.33439412852135, 57.316733780391694, 7.975604449070316, 16.851468414048412, 6.64624834514785, 29.01717397736549, 19.441269098430006, 28.678189005937234, 24.516283182025422, 48.97312448225916, 9.898968155981537, 168.5104613617185, 59.780891565121614, 79.5171249461875, 135.693379330896, 6.19713821899617, 37.184101312965026, 21.76002484449488, 94.39151018029258, 9.050407854420941, 12.596479009880795, 14.19916436553959, 7.0507945373814485, 15.355786297993465, 17.814140011563985, 97.5943519787744, 23.487697028905156, 70.16364139062155, 141.7596278468499, 28.954157781078578, 73.35027727913857, 60.61628565170862, 14.78714286594067, 83.21859237495744, 148.17272281218945, 46.37749714179579, 12.41424775931414, 34.347525873314275, 111.52404897057272, 80.8891697646657, 5.17930854677148, 30.535110473085666, 26.145467786091956, 8.24228422264548, 36.099756271917805, 8.651499395597856, 48.243301887150466, 56.67386115804185, 28.911993704047834, 76.85729925620728, 97.40515684739286, 48.628003400141054, 49.399754072109104, 44.31287275364645, 12.089439525004412, 19.157473358811732, 41.57975828747177, 19.92945670327452, 8.347686696488292, 114.48338220212763, 54.75533440579721, 60.61416194448309, 30.936856958110486, 58.35849245329993, 87.39007434042344, 20.12892804288979, 61.25778128007067, 7.91703072518282, 88.94381850374026, 18.885252841615156, 57.19883042444654, 31.32749691589617, 39.91433061889823, 61.205040805181575, 59.349568478960904, 17.744571474205802, 42.653782019168034, 5.146282543931145, 31.726343371078023, 5.777085556804946, 6.693554148232346, 42.462946002938736, 10.874173340237196, 67.72659799877404, 29.459726621070914, 69.43768044914023, 48.84781188246781, 5.457904165866727, 105.10538180459685, 20.47120525983045, 6.972191950310569, 22.05135810974678, 35.30327447711477, 107.48733161202478, 14.914457031628922, 8.498276497498386, 46.64093155151243, 8.5583797699207, 29.8484436459218, 120.73432181275864, 38.15455424223815, 5.560833470589698, 14.05159075456007, 101.29163704789332, 321.41097572820166, 27.353412800304994, 47.86415823661849, 141.05457343811898, 92.48955112370285, 40.91211393010745, 62.39222161899171, 56.92404457290118, 42.995105498587634, 66.15935258219884, 46.93670640980964, 71.18455515278185, 44.5654540303018, 87.72369021575714, 13.215372719991246, 32.70447046598865, 35.167176953598634, 40.26105981972007, 74.7636531897952, 54.578792373288366, 51.268932138445976, 149.8580925518419, 12.718411344402512, 21.15302408075608, 14.134383368169098, 79.33890387842649, 13.637822280582428, 26.602299121685686, 29.82046589858692, 181.6449693337291, 10.161007651573103, 7.98375924539754, 47.33562016791694, 41.78992399542463, 16.466308554370368, 69.79101800114277, 33.40287176666213, 11.725232668535282, 21.327925980622652, 42.60534184736011, 29.266941405238388, 93.16633257880345, 90.64789654104933, 6.4917269076063375, 15.822926745956087, 239.44144060379168, 45.65547537370888, 42.302093405028465, 34.705113725442516, 16.025202670222086, 14.072425990282136, 15.705190694536583, 13.308573904122403, 45.81334873292284, 36.291966910274624, 90.63140306584945, 83.9064233638435, 56.45888986525014, 73.38084200173823, 33.49029179485684, 30.724829790566503, 107.10374952698702, 170.6692912635655, 13.78052335438851, 83.4587175281886, 67.78390922100465, 16.361868291716384, 92.09930409191692, 23.947714486865237, 6.195730200535636, 46.07588604002826, 147.75144559973975, 58.79401653406718, 24.735895162571214, 43.93582605128606, 22.70030127867939, 49.55571257562112, 7.641999328312695, 9.765004224411042, 9.099013245412477, 8.796889103752692, 57.81110068095087, 6.314032430950145, 12.498120542630591, 120.68560388751044, 49.12948119486007, 49.7912642887619, 22.181905268873383, 95.4834186839968, 93.24270544550343, 132.68398682511636, 13.175327700892343, 63.093248919062404, 95.19597743302488, 77.89539682566864, 10.745675197905253, 84.45874113794653, 73.07456511352385, 38.5033504466981, 105.80895378772587, 19.46586797820315, 19.81353006821963, 27.763962364670803, 40.16738439365189, 17.85519750789179, 48.72887783603203, 96.36789386935517, 5.744746769381727, 21.01943715197933, 36.38892792483385, 22.296804622049226, 117.02790281827856, 21.700790037924136, 6.739184717083662, 128.1446806590105, 20.474788912199777, 13.482818445036177, 49.709464085121674, 63.42363464766567, 35.43836702125124, 27.17704419750791, 134.60155501020338, 28.56677054466682, 40.84432818034012, 69.69056002117738, 67.09272473557193, 5.692719121640515, 58.78546800507092, 27.234755075534032, 8.632702187829553, 89.13703305158177, 85.98434520650682, 55.29886175711525, 13.98735796576926, 37.590987484375695, 51.08382434691845, 56.34186587080552, 16.959444621492263, 24.72399528783675, 42.6006710260546, 5.792255681654189, 26.47897949741332, 12.468561275068417, 84.93410292378172, 23.966605459502098, 18.363483833155556, 51.11342425625266, 252.97726554335236, 15.545028207152793, 19.43792581246508, 242.64190100938788, 22.028644669854895, 7.941385209524729, 25.544864392054507, 5.948259363782461, 5.247056915441247, 38.82176652663051, 7.306611021771829, 85.75855798633788, 9.64987178130284, 147.26497758071707, 23.337483041171467, 8.46958789580251, 19.704913229975634, 83.7817149983775, 7.222960926070083, 37.9626827921267, 12.282000984258111, 26.0322388564381, 59.04519925616637, 116.99481958906466, 47.76191658256576, 6.069562933295621, 109.66135999647489, 79.81977805895036, 42.14755963154832, 12.268550495201492, 23.94152280016469, 5.852679745289373, 43.59793871772074, 16.32886453028503, 138.93657507301987, 26.166296119106526, 17.331333148798507, 79.99116649759303, 43.53981740018243, 125.6424760170188, 5.870074342230617, 64.48780206895955, 13.0110682279578, 16.930164925632564, 104.35224626317434, 46.71032451917427, 42.837494576051924, 8.974470686594463, 89.30697060786002, 111.97743531749268, 14.318054064743183, 8.1411132603214, 25.985324136574654, 46.6546790766843, 111.08660388022757, 17.75322703792663, 5.305833733532379, 5.118208811670198, 29.294719760060463, 11.472454913840071, 86.62080628484483, 40.57598018728311, 16.957269963256735, 66.72777938107556, 8.052057232079978, 7.953087556962585, 7.9091395977481636, 13.238820780377576, 10.952584403084032, 99.76254537255832, 40.76319982547244, 10.556922998181655, 18.012275377723917, 30.862654334099005, 92.14853079602837, 268.898345234968, 7.494944965358278, 34.190860742266075, 13.640775165386883, 46.42825691065307, 61.571505494421295, 5.913629252774168, 8.095052498298275, 118.74110025310782, 14.590880360175388, 79.98293707648264, 123.40006423329854, 79.28308420979677, 31.954741735021152, 120.3234618811913, 27.530978596141495, 18.231447176156507, 56.499212585058466, 157.3669413192427, 16.511133534844703, 13.486609007414803, 10.35382872093743, 54.44270437033972, 6.271659470867568, 20.629955001860722, 17.65754606534445, 10.188336206905836, 21.06323826171714, 29.209732585840648, 24.196296222324648, 16.44310730595027, 41.99321925223842, 25.38384677540504, 17.291952828689897, 24.45335742566794, 23.15086692454105, 33.84081711861587, 236.7404601627244, 6.142644007043987, 23.336832788018405, 66.75193350819191, 56.13630208175502, 38.43456750551745, 109.44622950976762, 47.50808612164737, 30.713435660939986, 11.201650311821759, 63.65111237618275, 54.19603066412275, 10.642380580011615, 83.54963056914409, 8.600262850584139, 8.161718748914442, 51.24434873178235, 8.44424713508065, 98.41923928877563, 28.55439882955239, 32.65815375427646, 37.168317928786735, 47.56873686756554, 93.26324754218554, 70.18696921668709, 98.09001459457062, 64.9860516811857, 93.3576860552007, 21.484524284436436, 47.3595822206578, 30.058642935540153, 17.343308669199025, 5.4139285269071316, 14.245073813955734, 204.47441557922488, 11.240887075425404, 46.44492550282994, 100.36018279979368, 138.31526200958842, 14.588616188535564, 70.35091316792781, 114.2686934296154, 32.29448779622538, 72.71328280707084, 77.97995147824, 6.56279338452444, 48.2135935004094, 19.183867745030785, 5.593828698039105, 44.52395442952105, 42.680978583124556, 25.440407069568295, 105.09700064757092, 9.98699049441608, 144.88330090131439, 6.139485524141807, 9.65920409788831, 29.232975952857934, 29.56153836035588, 18.81155555616194, 27.55353164996282, 8.45572139244234, 68.68905401733839, 14.6868820849401, 88.79356125290019, 27.780737721789528, 14.61490146351328, 165.63453290076754, 5.396107474636583, 17.273413347349624, 82.78162310436932, 16.772202558185608, 14.683603987356662, 103.00593384309381, 102.68772511568264, 8.739777336701323, 129.8098469641962, 5.758577447422036, 92.96781183240445, 39.541290515808655, 21.162004235387933, 27.09699038251769, 8.551315054022199, 16.3083646892779, 38.13349498139725, 157.07068114360175, 41.994618750915286, 12.399723069669395, 25.24952400639484, 24.250253208992127, 37.3596346865646, 19.887702284580882, 35.192587221427765, 6.348784777089155, 77.08665669190594, 11.432567371865234, 8.08903885007408, 26.780000534588346, 10.48711569534171, 32.585495366817, 99.79193653654042, 53.82622546468714, 19.023326618943177, 46.43312795724431, 7.652092638984887, 14.408239067049514, 9.288771064582148, 23.88939533447212, 21.37851998473117, 38.7489261233701, 91.33671803940923, 32.77018243411384, 15.13930667655808, 11.829111518411237, 25.54645951763676, 86.55557434847148, 228.72345837103234, 91.14810742848698, 45.94295993622105, 44.618478795714736, 49.24110483715446, 57.14307837782352, 67.36822430892937, 40.98170758998134, 75.92480496699878, 63.127750094797555, 60.78163971758542, 6.161884403579074, 9.798611205531772, 54.21479418541688, 20.232495303741704, 17.925717125560077, 320.91163069341235, 8.835247729351725, 64.1261062134754, 49.58825200923429, 15.324867447556914, 17.29806121099218, 35.909129110380796, 261.3689207248872, 60.915633550381, 21.171733781107978, 16.78286802457069, 130.62945491751898, 127.68716931866044, 166.55985549452663, 47.67330555983965, 66.46563503349836, 92.23079410262305, 69.6984332992706, 143.11571346247365, 43.63129618741817, 55.500076799862214, 11.948098191112658, 41.577904122102005, 51.100902315952915, 9.816536223441695, 7.2877828609564705, 239.19309933152155, 85.72710030871391, 125.35440176997687, 24.433483025232707, 67.05967653776351, 37.079486142038846, 52.83071926185369, 50.12750948734463, 39.86168743496039, 18.014233528422032, 52.776701084490256, 19.114071810243367, 12.159015861075867, 27.42490055195696, 39.81561059667458, 48.93020049802104, 96.06996442466081, 97.17911335074533, 20.178587067102615, 39.71979965197055, 6.983918420811047, 66.53069947676676, 100.23990561210955, 18.26706180523176, 19.889695649164445, 74.58503643354547, 224.6836351397865, 13.510140130587024, 75.27666581472012, 7.4214143292372645, 9.030307530976614, 53.33229115760239, 196.9290530556184, 64.24446732652851, 47.265453672466954, 18.273422808877562, 5.48618808585354, 42.43150729905937, 17.42215160157046, 30.102112128375417, 53.72812241519544, 18.085496886969967, 41.74312590287032, 21.526659675828213, 105.27291784844152, 6.1564789841529235, 146.83939304839296, 108.03940355129953, 34.5851569898134, 112.58124673701138, 18.153360861191487, 29.353774408636454, 64.43904644848523, 55.52654888233856, 40.94247867596586, 14.358473567949403, 11.371983866837216, 27.4370683025063, 7.8802911327205, 29.149870300979785, 37.45007645147957, 78.93163462419207, 28.233300735254396, 77.87209985663941, 147.78673074666088, 41.48745506702503, 70.91108792864037, 110.36854342267705, 37.32991244848402, 66.94347943785422, 59.35706481785123, 31.13833808703919, 10.687353297327622, 7.831716342888499, 16.04026422387995, 6.508978500138619, 49.78413719281863, 21.371669340526317, 26.258868239634275, 19.179788601705482, 15.891831233979838, 54.131589430330976, 24.807074155910115, 72.71181820388054, 24.13002984078678, 55.013220263350945, 9.545303729571373, 39.881494355602825, 60.557897048576606, 6.1033926492662856, 52.68322646555326, 53.57534141166372, 100.70658925769726, 60.05822358518559, 14.911048499262257, 5.307926341929164, 107.73001612508935, 27.27023163854223, 12.001391136334027, 78.35874465626, 33.6184912696055, 85.03504876921484, 138.17659424813186, 11.633504502854983, 7.131927394445555, 172.48081682483894, 25.71842422523428, 79.01274656518638, 8.45727062556159, 163.28606358468397, 22.77390976811956, 42.116848930635925, 34.63228028103046, 53.29965069402466, 5.0465573702371875, 81.63831810341857, 20.961267334241736, 159.46097885133236, 6.731038304748857, 24.444082322259867, 12.098776485602606, 13.161454057468388, 99.03949009757909, 41.163175466753216, 20.299931254865765, 12.374032656071588, 178.6907129311934, 48.83388529108954, 26.29587142857732, 7.039127408452325, 121.47594562136948, 10.958873840436183, 50.537747420042564, 63.8207140742245, 49.9690963959366, 19.013271610440146, 31.905495051116215, 32.22649547131634, 26.32501452074806, 19.663126993387817, 51.681569903299774, 47.90398219735985, 12.592744353867733, 73.73934461651197, 14.171066397539935, 26.573084939291746, 80.04145302987178, 34.08790504678278, 10.856028103929184, 7.170396681930846, 42.27562309919628, 25.712853744012175, 73.41166248638694, 130.0888778340807, 12.859131694809545, 43.65811506069707, 5.655008826497176, 5.071097508345426, 146.32276311085042, 136.95484633629374, 72.4909579895211, 24.821374658340535, 36.41781398589543, 46.818741305064705, 19.539719924087105, 12.48042198963664, 14.991061383153074, 31.814093828493913, 135.04349897997304, 10.593714743968535, 6.5466368980671055, 6.591298663428248, 36.97859078503659, 124.96013730486762, 37.90532072883536, 44.20416617550054, 45.070480942790255, 5.0863128473228985, 60.5875684338824, 98.42641933003523, 53.770946720710434, 10.717862507449698, 53.06776703658899, 58.75716757102087, 21.54292050039149, 81.61903762246644, 34.93028445964304, 25.996951342322305, 17.122275162612098, 35.34262991964535, 5.210021876464217, 40.07252339783185, 28.63473438812528, 15.853720286743048, 6.7607121698130115, 27.444354993933256, 49.086851104380244, 22.183440880456544, 6.3136255826294665, 6.501523296805609, 123.9839044713495, 37.32590893757533, 27.857533865315073, 107.62639259630495, 110.36090240522624, 18.670363505994615, 31.973507586243535, 37.17867352658581, 28.06870535140532, 43.08253247203773, 73.00508895258068, 51.9178084498158, 12.63518044434515, 65.58822991359038, 18.1869903805335, 56.53445332496995, 59.92041727519124, 59.492758539768175, 13.608499451283839, 20.830314120140322, 8.827816631378644, 30.665742931859974, 217.76535028897132, 55.39036754182344, 22.931193193179297, 36.06935828169405, 5.203782294244494, 63.151915961933156, 90.03649684671569, 175.36985946739512, 37.29279412496582, 13.865854059453698, 14.223249971072244, 267.4231369030485, 29.865854604776008, 48.888246427280414, 237.59985276906804, 77.21868611503047, 19.010922324297432, 92.18726251381786, 11.278428392658142, 14.25243072555367, 32.821840332774165, 24.74397687307552, 44.252646976148704, 26.8523942761721, 55.922000650858934, 42.16287057004379, 34.1661564122849, 31.684171604406664, 30.713797014589815, 226.39315733840755, 21.98740705971446, 34.19813805645993, 80.84317760635926, 34.32298790559233, 23.657636740045305, 5.320308034180351, 24.634400737400405, 5.043048164234128, 72.3349125425148, 9.275033333789496, 19.225062006371946, 16.156517459342574, 78.4618293212315, 6.867439669125974, 31.77588901977064, 90.01794231562525, 41.994604891147574, 85.28866194655667, 22.66468178393401, 9.190171093962833, 5.422154867462209, 25.79642074445677, 45.46740646156389, 30.015109335377602, 16.483198388796726, 12.46281698294564, 48.17609396920279, 9.286747390488326, 23.421424335997543, 37.696100893000704, 46.24490059785041, 15.652286298377675, 14.074665312169827, 54.26757522018758, 102.92771855623741, 93.74897577861215, 53.22602756654517, 67.868175931488, 30.84797441188815, 26.192530539779025, 29.958608674784216, 18.60705880312398, 89.14161355794646, 165.81400487556468, 59.545794813274824, 53.85853370268998, 56.72339851557531, 55.71734123982487, 48.24738584400382, 103.68182017745656, 44.456405926922365, 91.5182171995352, 5.824584710837601, 40.58754723168794, 44.68352790875888, 10.491532262057232, 47.010270211249214, 12.159412514878937, 49.856772450464284, 222.96518644818985, 24.8320353887273, 61.278717632830805, 70.97934046324339, 30.328353946233364, 81.35297743725224, 93.13694204161118, 93.22038600860357, 52.18183778410835, 52.85728572322449, 38.645928228726326, 20.193724682996493, 37.830678192352856, 60.51822062429923, 14.77547968352933, 6.858166270251894, 22.544061277933775, 69.3734499916581, 35.001119687275256, 21.57019494784789, 31.784481202202464, 98.88299546245867, 5.157398670603932, 91.01910749338927, 36.95069131079748, 49.83876490402638, 11.877366161282575, 17.775964742222214, 32.81828760337853, 12.000904902292522, 43.25214437811309, 7.440107593451311, 71.34864512352081, 38.03426726594393, 26.817382229135124, 38.19454081004618, 67.85547293608394, 73.24354259719553, 37.947847470930654, 16.12743680358696, 20.97130986546325, 133.22592003483834, 15.097905018717546, 16.348195802266773, 44.33719936230854, 17.42234146375513, 66.47754770707142, 99.83917763466661, 31.598428241938862, 22.25190119710217, 28.30008106258526, 49.03736033068961, 68.72629707041185, 51.88920311247442, 42.63197300791444, 80.07226928701601, 28.698463676321023, 6.87194088977166, 122.79144934553119, 20.78838804666963, 99.73589698708986, 20.76408784291516, 120.17790538253364, 99.70798582315263, 14.418657829277306, 22.674851978853493, 30.69175569553486, 54.59387816375577, 106.2163051667248, 15.463417250187616, 33.371139352014666, 203.85470362220926, 76.33334868693561, 17.30527366641048, 12.253976839675474, 14.498842632606951, 74.70092576408717, 25.723622870107146, 9.402273789462004, 28.915059921035926, 6.530281912549563, 12.854575720272168, 11.064758703250114, 28.154030418776777, 27.508937655934353, 21.13137010412366, 27.472205002396674, 60.820040531673676, 25.65707527385451, 92.6034254488959, 9.918039093367367, 50.377512646185366, 193.82945472067286, 50.000400247735755, 87.66143366913113, 14.886796989202194, 42.85417324054545, 452.2293278931036, 20.31682397886191, 10.287813486869029, 343.4237700161091, 79.37002849618135, 13.345677087207891, 71.08486353890866, 111.975449962745, 103.89228671110033, 62.77829922665967, 12.718993664796253, 63.64009813634888, 104.87958590867235, 21.415972040099625, 104.85201651599694, 14.489498073910736, 128.20993818397835, 79.11037043107424, 14.417007961278177, 5.140717485969778, 35.85456050991572, 127.38061986119268, 5.772668395038404, 99.08532451333204, 64.05251461812904, 42.857044302492625, 94.08507569275473, 134.55151078220294, ...])
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);
([2978167.4804192246, 3454760.9375, 3462803.3158943583, 3515659.2946955385, 3555952.496191728, 3657274.813546558, 3770913.9576160177, 3811887.4324919786, 3847558.656228499, 4075629.4131575054, 4113421.875, 4113450.8354334864, 4135642.2953482647, 4152935.9375, 4152960.7882659934, 4179159.0039434005, 4217966.79137173, 4228348.9551524585, 4228367.895231769, 4249451.5262805065, 4295785.9375, 4303719.602134566, 4338875.420885558, 4340166.819715625, 4343500.767290741, 4346171.875, 4346279.175266289, 4356966.99536194, 4389159.375, 4390282.508633663, 4394903.3076764755, 4404731.25, 4481969.711581762, 4509321.875, 4542242.679196378, 4553390.154672707, 4553409.375, 4568523.4375, 4574314.063320635, 4697560.9375, 4751123.356307624, 4775967.1875, 4797314.056230351, 4807198.2444456, 4823781.25, 4956930.611696399, 5062942.612125982, 5070158.757842411, 5071456.25, 5071889.891373436, 5074365.2453639, 5095838.82015792, 5124015.625, 5125083.415244969, 5143415.625, 5147282.8125, 5153995.3125, 5252058.251659672, 5266515.049597028, 5267139.0625, 5272545.715239691, 5303527.3273005895, 5305316.835370953, 5306580.460086258, 5318652.915577796, 5350621.599211724, 5398834.197325072, 5398870.652135491, 5404096.875, 5412023.116624346, 5414356.25, 5420787.5, 5466476.5625, 5498915.430964843, 5500815.625, 5508378.083901907, 5544120.988266949, 5550700.0, 5558314.0625, 5559437.407100756, 5560712.5, 5560728.972009329, 5561098.342337724, 5563031.838947276, 5563713.062696213, 5564249.866888977, 5566606.165291275, 5575252.900368781, 5593183.444214635, 5593631.249985517, 5595618.75, 5596565.625, 5597771.270208929, 5605259.123718632, 5627025.0, 5631171.875, 5656141.978088182, 5659689.601463135, 5661658.55611188, 5664877.820851802, 5665291.515033765, 5667315.738798246, 5694241.303489548, 5696893.75, 5716812.5, 5723081.25, 5725113.661254647, 5753945.993909353, 5755480.60143547, 5756503.125, 5757283.604059472, 5757913.66852747, 5760429.061303952, 5762707.8125, 5762981.25, 5764660.9375, 5770828.125, 5803967.082080865, 5803979.641144772, 5804864.626499183, 5808935.098984129, 5812790.625, 5822372.926095771, 5824691.826712846, 5825335.9375, 5830334.206506991, 5836912.5, 5849414.99024758, 5853707.8125, 5853745.3125, 5854781.159702388, 5867094.422418603, 5867633.766071846, 5878346.275037365, 5896562.054199139, 5900043.75, 5934259.375, 5936912.492884337, 5939420.692463175, 5939429.235369713, 5946814.543393357, 5946817.1875, 5951326.5625, 5951914.0625, 5953022.433873435, 5953940.3701324565, 5957446.836555195, 5958085.718405936, 5958661.198261667, 5958796.559456829, 5960400.0, 5962940.46826646, 5988368.902568891, 5992100.0, 5992328.733496258, 5993803.125, 5996703.728441773, 5998709.375, 5998854.6875, 5999757.8125, 6000727.912086519, 6004451.021586364, 6004872.39630943, 6006704.6875, 6006704.6875, 6006732.056012795, 6007186.770362967, 6007818.75, 6009137.5, 6009383.021162725, 6009424.465219566, 6010598.208297038, 6010659.139318292, 6011027.73502252, 6014154.582148383, 6014418.75, 6014834.494544454, 6016897.716390934, 6020652.504824644, 6029228.125, 6032970.3125, 6033901.91226056, 6036178.125, 6037061.879524618, 6038769.101364183, 6039511.213705909, 6045509.375, 6045522.631018991, 6048021.2098155925, 6048540.625, 6048559.404508443, 6049775.213505241, 6051992.1875, 6054365.625, 6057007.8125, 6058754.23124284, 6063608.070459805, 6070563.814132197, 6070948.624401828, 6071204.18110801, 6074278.125, 6074939.0625, 6075537.323145559, 6115275.0, 6121038.006858881, 6146968.75, 6155343.75, 6156000.964173659, 6159782.8125, 6161151.5625, 6163227.782956864, 6180354.6875, 6190895.3125, 6193031.131635881, 6193195.3125, 6195979.40276541, 6198355.662588504, 6203966.099422943, 6209180.049066577, 6211266.67175734, 6224187.273399544, 6231638.471219113, 6233075.643934565, 6233568.75, 6242082.918413559, 6260031.721840758, 6260038.774252816, 6261099.292103736, 6266289.0625, 6286714.424411904, 6289464.792035963, 6290012.5, 6292181.25, 6294437.0182036245, 6315789.86545145, 6341398.928694532, 6341900.0, 6349249.862109227, 6350489.754447677, 6351450.709079717, 6351635.9375, 6351673.718426519, 6351827.866019655, 6353735.800352299, 6356044.040363603, 6356195.3125, 6371382.8125, 6372611.041095264, 6373232.125859751, 6374905.534109924, 6375938.995144346, 6376053.7246817, 6378634.251818512, 6379214.0625, 6379278.705806417, 6383555.701169401, 6383665.181420866, 6384624.576962273, 6389468.75, 6402602.647383131, 6404371.751939651, 6406241.615834727, 6406311.782542684, 6407058.9312608745, 6407446.110827411, 6408398.081692916, 6408477.107066961, 6408618.261534981, 6410860.600856834, 6411007.975381268, 6411787.5, 6412288.382339274, 6412581.517825585, 6412741.964627549, 6412794.6705803, 6412799.452847815, 6413058.4142963905, 6413967.1875, 6414884.706885606, 6415170.3125, 6415379.412417834, 6415648.4375, 6416456.25, 6433958.7345805755, 6436994.776121953, 6439102.204742273, 6439982.8125, 6440051.264509349, 6440714.528827412, 6441829.542833291, 6443065.5699790595, 6453086.031545325, 6464147.553773984, 6465415.625, 6467772.238699788, 6471722.024814551, 6499513.328440955, 6504132.115850727, 6529688.614560727, 6541032.097232328, 6544736.806700429, 6548479.788609281, 6548650.06815827, 6549264.4493759265, 6549274.097967564, 6549848.4375, 6550787.854063798, 6552481.25, 6552509.04194384, 6555223.768252053, 6558705.549885453, 6563627.663231965, 6578642.560078683, 6582491.342310027, 6589470.943699212, 6590214.281721706, 6591345.3125, 6591662.248361578, 6592038.937388862, 6593362.319845058, 6593617.1875, 6594514.0625, 6594734.375, 6594911.562401966, 6595403.446524694, 6595825.509677562, 6596178.125, 6596680.009380682, 6597253.623240973, 6601971.743179891, 6614089.574190782, 6614532.8125, 6615868.75, 6616704.459437788, 6617056.980388018, 6619430.798590762, 6619474.380816828, 6620281.689359202, 6620842.1875, 6624123.4375, 6624310.9375, 6624338.607887104, 6628473.4375, 6628879.6875, 6629316.247640765, 6629349.714408596, 6629952.981880502, 6630107.8125, 6631995.278409888, 6632745.82672727, 6635808.282635829, 6635843.165741985, 6645054.6875, 6657951.772403791, 6666913.897715967, 6671641.4434242025, 6671803.569391151, 6671876.5625, 6673976.09102822, 6674443.061216482, 6674458.585858033, 6676385.405339558, 6677928.009996628, 6684020.3125, 6684582.185740968, 6684979.288823046, 6685109.999751619, 6687233.606439888, 6699771.875, 6700082.517310284, 6700918.440321083, 6700919.853344798, 6700943.361029313, 6717634.375, 6720862.335369032, 6720955.949176494, 6724776.181868945, 6724888.854147841, 6727640.529862913, 6728521.875, 6728729.245760442, 6729051.5625, 6729053.029399284, 6729096.788659579, 6729188.565721109, 6729275.964110611, 6729839.0625, 6730352.803820883, 6731026.144184111, 6731793.307597322, 6732033.816223755, 6732134.375, 6732321.910228131, 6732693.158890085, 6734130.254796136, 6735055.5525490325, 6735272.893300964, 6735830.386708173, 6736226.296598304, 6736234.720098706, 6736439.97568281, 6739552.942929812, 6740141.129788697, 6742586.107612249, 6752166.83904066, 6752207.723673643, 6753170.758068223, 6753231.758674503, 6753504.298265152, 6753544.431962199, 6754195.3125, 6754520.3125, 6754570.3125, 6754923.4375, 6755004.6875, 6756060.096874996, 6756471.870612892, 6756479.342848057, 6757127.790606723, 6760302.817484928, 6765127.112044467, 6769274.756184054, 6770701.393275694, 6770726.84921194, 6781218.64323262, 6781759.126834308, 6782152.747476866, 6782236.465640954, 6784068.75, 6784711.013404666, 6786431.25, 6788209.375, 6789359.184685509, 6789434.375, 6790229.186639871, 6790532.35972707, 6791104.6875, 6791537.3548225835, 6793334.773462466, 6794541.991939561, 6797041.812531401, 6799118.8212222755, 6803492.7921751095, 6803810.9375, 6804285.9375, 6805078.294409285, 6806093.75, 6806920.645869428, 6807116.053036819, 6807710.9375, 6807793.75, 6807830.154001178, 6808159.375, 6808424.232506748, 6808482.441213909, 6808523.4375, 6809582.713416312, 6809584.196687139, 6809637.320630074, 6809808.497877876, 6809980.449376516, 6810402.042558527, 6810451.926300228, 6810487.5, 6810708.97622047, 6810805.431390042, 6810968.698944597, 6811109.681720361, 6811189.0625, 6811665.009161483, 6811684.375, 6811739.0237616, 6812057.724087726, 6812697.126905574, 6812737.437957064, 6812950.501524784, 6813598.170009356, 6813676.972097672, 6813782.7431489425, 6815228.014385037, 6815350.0, 6815811.706304048, 6827554.791416067, 6827607.03455764, 6829646.28010237, 6829857.8125, 6832155.947743242, 6832245.235951675, 6834902.031679011, 6837869.067667526, 6851815.625, 6859968.75, 6866653.125, 6872083.497917697, 6876810.746425244, 6877884.113124056, 6877939.0625, 6878277.447452922, 6878539.938736885, 6878744.369574417, 6879338.7520909, 6879398.624161163, 6880637.106788475, 6881335.469729135, 6881368.29748641, 6885071.367565545, 6895311.443083131, 6902385.9375, 6904958.585783026, 6904975.0, 6914298.570586481, 6914407.665182533, 6915679.636646974, 6917484.127054243, 6918305.738436647, 6927170.171589069, 6927185.9375, 6928053.125, 6929200.050944262, 6933561.344230084, 6935574.828678238, 6936707.8125, 6937469.574224734, 6937751.5625, 6938381.25, 6939251.5625, 6939335.9375, 6939730.478500206, 6941793.75, 6942781.25, 6944125.0, 6944545.1354234405, 6945100.0, 6945228.805854352, 6945370.817783514, 6945432.8125, 6945554.051108865, 6945722.229435451, 6946270.6161227515, 6946714.973507462, 6947387.5, 6947512.5, 6947532.991760938, 6947633.318362045, 6947679.6875, 6947762.531491239, 6947790.207962301, 6947979.15466958, 6948064.474130923, 6948144.464870766, 6948342.1875, 6948422.81110573, 6948971.8751691, 6949046.875, 6949213.634403033, 6949250.0, 6949685.511185858, 6949823.4375, 6953004.6875, 6964111.405791395, 6964842.1875, 6964868.75, 6965138.022953207, 6965344.347092036, 6965364.981507972, 6965924.324976301, 6966031.25, 6966091.939133558, 6966498.98671311, 6966503.125, 6966682.486799091, 6966692.1875, 6966713.993069371, 6966828.75006051, 6966923.4375, 6967164.848120264, 6967183.3853138415, 6967317.557068262, 6967939.0625, 6968304.6875, 6968567.1875, 6968595.3125, 6968616.544792302, 6968762.5, 6969190.074621533, 6970304.6875, 6970899.645984463, 6971610.039213752, 6971857.135196103, 6972189.0625, 6972679.168698878, 6973415.190869041, 6973574.700347943, 6974890.092656612, 6975016.808566501, 6975125.0, 6975412.5199240595, 6975860.622329443, 6977446.875, 6979295.977680504, 6981856.806901662, 6982778.928787664, 6985067.714949921, 6989735.088278017, 6990651.664623554, 6991113.1362421615, 6992179.6875, 6992228.300105036, 6992675.580275856, 6992749.070349634, 6994933.688493567, 6995098.4375, 6995133.574095804, 6996796.875, 6998692.8342832085, 7002781.472653512, 7003610.9375, 7006413.327902417, 7007889.0625, 7007931.8027882865, 7008003.275854788, 7008278.067537108, 7009083.5186271975, 7009509.375, 7009581.25, 7010409.564645283, 7010818.73509748, 7011188.984160121, 7011685.9375, 7015040.625, 7015682.8125, 7015988.685620267, 7017614.0625, 7017748.4375, 7017926.5625, 7018143.75, 7018177.823741744, 7018614.652917023, 7018664.323708444, 7018865.763217305, 7019038.291561105, 7019057.749740603, 7019373.311387717, 7019410.169460595, 7019417.416323293, 7019579.943795997, 7019584.153429125, 7019589.0625, 7019629.416624114, 7019810.01258066, 7019865.86758214, 7019902.982478652, 7019940.06453591, 7020261.083291845, 7020262.5, 7020284.375, 7020387.867107794, 7020456.091957901, 7020457.804485199, 7020480.223194445, 7020482.8125, 7020506.183244835, 7020564.557744367, 7020682.8125, 7020701.5625, 7020739.0625, 7020778.125, 7020823.738663877, 7020825.039702128, 7020927.671429331, 7020967.8537307065, 7021043.75, 7021044.059413324, 7021085.9375, 7021093.369475804, 7021131.773232192, 7021143.197379614, 7021212.5, 7021214.357900621, 7021217.899677721, 7021231.453568288, 7021245.3125, 7021249.835162696, 7021255.6877908865, 7021264.606041064, 7021305.688781996, 7021310.056194144, 7021345.3125, 7021385.308950441, 7021455.36122111, 7021491.006023962, 7021518.75, 7021556.126155802, 7021568.427285589, 7021650.0, 7021700.976851914, 7021740.625, 7021758.781505562, 7021817.203185768, 7021821.084406612, 7021823.4375, 7021983.271866309, 7022051.497902572, 7022086.7946508555, 7022128.125, 7022140.676197849, 7022141.395970379, 7022208.889814359, 7022298.219530135, 7022312.392907318, 7022326.5625, 7022328.125, 7022359.193945543, 7022364.245479397, 7022385.276266047, 7022434.513099054, 7022437.417279972, 7022457.8125, 7022611.820176587, 7022643.75, 7022653.842468399, 7022725.120685655, 7022846.463368031, 7022894.0260106055, 7022900.0, 7022922.473808721, 7022971.400436218, 7023200.829065105, 7023282.091523573, 7023324.159179132, 7023389.075440076, 7023408.233779212, 7023439.0625, 7023448.066714113, 7023548.807121926, 7023570.946542148, 7023578.125, 7023629.2366670035, 7023779.6875, 7023789.0625, 7023850.0, 7023904.060523671, 7024046.875, 7024095.808868726, 7024289.209827591, 7024307.8679238735, 7024350.4328181725, 7024475.4682130935, 7024830.7549797855, 7024898.4375, 7024921.875, 7025090.390603618, 7025116.099563486, 7025215.625, 7025634.632098853, 7025717.1875, 7026035.204910748, 7026052.371777689, 7026059.360986835, 7026147.516640498, 7026252.681648576, 7026261.398760756, 7026265.983841792, 7026417.278951783, 7026454.8030830575, 7026467.1875, 7026579.652870967, 7026582.650505385, 7026723.176061242, 7026832.113710135, 7026844.828345981, 7026973.00574672, 7027002.248034724, 7027112.34422927, 7027165.613494825, 7027169.5266484935, 7027305.476745641, 7027382.8125, 7027513.151968474, 7027556.25, 7027560.542351486, 7027615.625, 7027704.287490024, 7027835.368388982, 7027841.525155785, 7027967.354023726, 7028034.5525791375, 7028075.0, 7028113.492006264, 7028127.916877891, 7028218.764139334, 7028256.25, 7028346.875, 7028346.875, 7028351.5625, 7028521.5609341925, 7028571.672866187, 7028607.116400645, 7028656.25, 7028720.266525851, 7028793.250870554, 7028921.875, 7028974.20908475, 7029069.854892039, 7029254.449726723, 7029459.181648954, 7029529.6875, 7029662.273972372, 7029670.3125, 7029682.721868306, 7029917.1875, 7029954.566072142, 7030050.0, 7030081.144378202, 7030289.985927696, 7030375.0, 7030651.110664247, 7030737.5, 7030776.5625, 7030839.0625, 7030846.530591178, 7030900.917889941, 7031196.641166833, 7031318.839072263, 7031657.8125, 7031751.495073103, 7031905.023799992, 7032207.60852531, 7032287.452085679, 7032422.374219444, 7032756.25, 7032946.875, 7033028.322072906, 7033642.1875, 7033873.047438154, 7034417.015611356, 7034605.293435891, 7035044.500790323, 7035212.5, 7035328.125, 7035428.478143055, 7035431.963829878, 7035506.25, 7035706.196711292, 7035765.298774081, 7035856.25, 7035859.375, 7035859.549767386, 7035863.814829118, 7035966.946284794, 7036000.0, 7036020.825595977, 7036247.455081113, 7036318.328156033, 7036398.4375, 7036410.807302366, 7036676.5625, 7036749.152178778, 7036807.8125, 7036982.8125, 7037045.3125, 7037065.625, 7037142.1875, 7037282.649628202, 7037306.25, 7037525.933817429, 7037814.0625, 7037959.226910591, 7037972.0172986295, 7038181.443753587, 7038604.287827996, 7038658.9259287305, 7038810.710774146, 7039598.4448250905, 7043434.677291216, 7044354.618037306, 7046302.905184638, 7046473.36435274, 7046598.4375, 7046831.735887247, 7047101.5625, 7047538.656963401, 7048170.3125, 7048176.5625, 7048208.094411938, 7048264.0625, 7048383.945620128, 7048570.607440198, 7048792.1875, 7048882.76824735, 7049142.643848732, 7049240.224272765, 7049457.8125, 7049646.921476368, 7049902.632693808, 7050176.5625, 7050257.112266001, 7050337.154771624, 7050418.514753422, 7050439.943452857, 7050465.625, 7050562.931930238, 7051226.920988082, 7051227.9930428425, 7051317.682500147, 7051817.1875, 7052293.275263441, 7052398.42275081, 7052539.0625, 7052967.094827307, 7052971.875, 7053209.228003827, 7053350.0, 7053907.927213573, 7054969.029847743, 7054985.383552263, 7055417.379313625, 7056571.915435903, 7057046.4058192335, 7057896.875, 7059128.04987019, 7059525.678849852, 7068016.151078189, 7068294.186048903, 7068654.260344467, 7068657.801038484, 7068678.125, 7068871.875, 7069257.508414002, 7069289.0625, 7069475.0, 7069496.553158606, 7069503.644915438, 7070008.86973409, 7070249.4263299415, 7070489.0625, 7070596.019544923, 7070691.474410616, 7070873.4375, 7070907.668210005, 7071082.423331, 7071095.3125, 7071434.375, 7071450.138689045, 7071614.19300607, 7072565.60741954, 7072979.6875, 7073928.608632296, 7075472.382128096, 7075625.618054727, 7075892.066302288, 7075900.0, 7075977.965202396, 7076015.707642801, 7076458.41192815, 7076511.207599118, 7076636.263070092, 7076810.896850989, 7076826.293648547, 7076940.541198535, 7077244.775457262, 7077349.343585378, 7077497.564086131, 7077744.356298671, 7078126.417793607, 7078256.870869393, 7078450.0, 7078746.88498024, 7078934.375, 7079267.627687066, 7079284.3605711125, 7079423.4375, 7079508.566693676, 7079560.310904393, 7079805.636830807, 7079893.406211757, 7079907.576562618, 7080212.0071522305, 7080510.9375, 7080959.375, 7087690.8843511315, 7088923.46405418, 7089081.33425995, 7089209.268860207, 7089210.427177094, 7089520.142945792, 7090162.238510526, 7090185.813629941, 7090639.0625, 7090721.760040915, 7091119.580242786, 7091305.159408398, 7091343.75, 7091467.067550236, 7091519.738107623, 7091629.6875, 7091860.581338181, 7092472.156193226, 7092545.490817622, 7092717.16619461, ...], [44.487821794506765, 86.13774778350484, 32.81453677348685, 50.16031750915525, 7.390610925671369, 43.33434110962321, 26.610158875405595, 27.25682007991345, 33.505677134316336, 7.506937628328742, 39.4625621133263, 13.98331013956362, 7.150093236012355, 72.69871329033482, 10.90219029237591, 22.883630723496378, 58.91185334671269, 12.046269124986011, 24.882660354419166, 43.19871943865707, 38.55104537930637, 20.135220470579437, 28.75019880474548, 77.8155912670798, 18.979651939123485, 51.84806335731008, 21.3719243870038, 6.457387884952531, 72.87220324165897, 53.308763035945134, 15.686712727324345, 64.47997129502234, 33.93614088614561, 57.491698079481026, 11.994333239813729, 44.93958676881649, 36.490385422510435, 67.06613411508218, 14.944638221756579, 59.96875050214776, 27.015748602133254, 35.5682074659083, 68.36113221471032, 38.33439412852135, 57.316733780391694, 7.975604449070316, 16.851468414048412, 6.64624834514785, 29.01717397736549, 19.441269098430006, 28.678189005937234, 24.516283182025422, 48.97312448225916, 9.898968155981537, 168.5104613617185, 59.780891565121614, 79.5171249461875, 135.693379330896, 6.19713821899617, 37.184101312965026, 21.76002484449488, 94.39151018029258, 9.050407854420941, 12.596479009880795, 14.19916436553959, 7.0507945373814485, 15.355786297993465, 17.814140011563985, 97.5943519787744, 23.487697028905156, 70.16364139062155, 141.7596278468499, 28.954157781078578, 73.35027727913857, 60.61628565170862, 14.78714286594067, 83.21859237495744, 148.17272281218945, 46.37749714179579, 12.41424775931414, 34.347525873314275, 111.52404897057272, 80.8891697646657, 5.17930854677148, 30.535110473085666, 26.145467786091956, 8.24228422264548, 36.099756271917805, 8.651499395597856, 48.243301887150466, 56.67386115804185, 28.911993704047834, 76.85729925620728, 97.40515684739286, 48.628003400141054, 49.399754072109104, 44.31287275364645, 12.089439525004412, 19.157473358811732, 41.57975828747177, 19.92945670327452, 8.347686696488292, 114.48338220212763, 54.75533440579721, 60.61416194448309, 30.936856958110486, 58.35849245329993, 87.39007434042344, 20.12892804288979, 61.25778128007067, 7.91703072518282, 88.94381850374026, 18.885252841615156, 57.19883042444654, 31.32749691589617, 39.91433061889823, 61.205040805181575, 59.349568478960904, 17.744571474205802, 42.653782019168034, 5.146282543931145, 31.726343371078023, 5.777085556804946, 6.693554148232346, 42.462946002938736, 10.874173340237196, 67.72659799877404, 29.459726621070914, 69.43768044914023, 48.84781188246781, 5.457904165866727, 105.10538180459685, 20.47120525983045, 6.972191950310569, 22.05135810974678, 35.30327447711477, 107.48733161202478, 14.914457031628922, 8.498276497498386, 46.64093155151243, 8.5583797699207, 29.8484436459218, 120.73432181275864, 38.15455424223815, 5.560833470589698, 14.05159075456007, 101.29163704789332, 321.41097572820166, 27.353412800304994, 47.86415823661849, 141.05457343811898, 92.48955112370285, 40.91211393010745, 62.39222161899171, 56.92404457290118, 42.995105498587634, 66.15935258219884, 46.93670640980964, 71.18455515278185, 44.5654540303018, 87.72369021575714, 13.215372719991246, 32.70447046598865, 35.167176953598634, 40.26105981972007, 74.7636531897952, 54.578792373288366, 51.268932138445976, 149.8580925518419, 12.718411344402512, 21.15302408075608, 14.134383368169098, 79.33890387842649, 13.637822280582428, 26.602299121685686, 29.82046589858692, 181.6449693337291, 10.161007651573103, 7.98375924539754, 47.33562016791694, 41.78992399542463, 16.466308554370368, 69.79101800114277, 33.40287176666213, 11.725232668535282, 21.327925980622652, 42.60534184736011, 29.266941405238388, 93.16633257880345, 90.64789654104933, 6.4917269076063375, 15.822926745956087, 239.44144060379168, 45.65547537370888, 42.302093405028465, 34.705113725442516, 16.025202670222086, 14.072425990282136, 15.705190694536583, 13.308573904122403, 45.81334873292284, 36.291966910274624, 90.63140306584945, 83.9064233638435, 56.45888986525014, 73.38084200173823, 33.49029179485684, 30.724829790566503, 107.10374952698702, 170.6692912635655, 13.78052335438851, 83.4587175281886, 67.78390922100465, 16.361868291716384, 92.09930409191692, 23.947714486865237, 6.195730200535636, 46.07588604002826, 147.75144559973975, 58.79401653406718, 24.735895162571214, 43.93582605128606, 22.70030127867939, 49.55571257562112, 7.641999328312695, 9.765004224411042, 9.099013245412477, 8.796889103752692, 57.81110068095087, 6.314032430950145, 12.498120542630591, 120.68560388751044, 49.12948119486007, 49.7912642887619, 22.181905268873383, 95.4834186839968, 93.24270544550343, 132.68398682511636, 13.175327700892343, 63.093248919062404, 95.19597743302488, 77.89539682566864, 10.745675197905253, 84.45874113794653, 73.07456511352385, 38.5033504466981, 105.80895378772587, 19.46586797820315, 19.81353006821963, 27.763962364670803, 40.16738439365189, 17.85519750789179, 48.72887783603203, 96.36789386935517, 5.744746769381727, 21.01943715197933, 36.38892792483385, 22.296804622049226, 117.02790281827856, 21.700790037924136, 6.739184717083662, 128.1446806590105, 20.474788912199777, 13.482818445036177, 49.709464085121674, 63.42363464766567, 35.43836702125124, 27.17704419750791, 134.60155501020338, 28.56677054466682, 40.84432818034012, 69.69056002117738, 67.09272473557193, 5.692719121640515, 58.78546800507092, 27.234755075534032, 8.632702187829553, 89.13703305158177, 85.98434520650682, 55.29886175711525, 13.98735796576926, 37.590987484375695, 51.08382434691845, 56.34186587080552, 16.959444621492263, 24.72399528783675, 42.6006710260546, 5.792255681654189, 26.47897949741332, 12.468561275068417, 84.93410292378172, 23.966605459502098, 18.363483833155556, 51.11342425625266, 252.97726554335236, 15.545028207152793, 19.43792581246508, 242.64190100938788, 22.028644669854895, 7.941385209524729, 25.544864392054507, 5.948259363782461, 5.247056915441247, 38.82176652663051, 7.306611021771829, 85.75855798633788, 9.64987178130284, 147.26497758071707, 23.337483041171467, 8.46958789580251, 19.704913229975634, 83.7817149983775, 7.222960926070083, 37.9626827921267, 12.282000984258111, 26.0322388564381, 59.04519925616637, 116.99481958906466, 47.76191658256576, 6.069562933295621, 109.66135999647489, 79.81977805895036, 42.14755963154832, 12.268550495201492, 23.94152280016469, 5.852679745289373, 43.59793871772074, 16.32886453028503, 138.93657507301987, 26.166296119106526, 17.331333148798507, 79.99116649759303, 43.53981740018243, 125.6424760170188, 5.870074342230617, 64.48780206895955, 13.0110682279578, 16.930164925632564, 104.35224626317434, 46.71032451917427, 42.837494576051924, 8.974470686594463, 89.30697060786002, 111.97743531749268, 14.318054064743183, 8.1411132603214, 25.985324136574654, 46.6546790766843, 111.08660388022757, 17.75322703792663, 5.305833733532379, 5.118208811670198, 29.294719760060463, 11.472454913840071, 86.62080628484483, 40.57598018728311, 16.957269963256735, 66.72777938107556, 8.052057232079978, 7.953087556962585, 7.9091395977481636, 13.238820780377576, 10.952584403084032, 99.76254537255832, 40.76319982547244, 10.556922998181655, 18.012275377723917, 30.862654334099005, 92.14853079602837, 268.898345234968, 7.494944965358278, 34.190860742266075, 13.640775165386883, 46.42825691065307, 61.571505494421295, 5.913629252774168, 8.095052498298275, 118.74110025310782, 14.590880360175388, 79.98293707648264, 123.40006423329854, 79.28308420979677, 31.954741735021152, 120.3234618811913, 27.530978596141495, 18.231447176156507, 56.499212585058466, 157.3669413192427, 16.511133534844703, 13.486609007414803, 10.35382872093743, 54.44270437033972, 6.271659470867568, 20.629955001860722, 17.65754606534445, 10.188336206905836, 21.06323826171714, 29.209732585840648, 24.196296222324648, 16.44310730595027, 41.99321925223842, 25.38384677540504, 17.291952828689897, 24.45335742566794, 23.15086692454105, 33.84081711861587, 236.7404601627244, 6.142644007043987, 23.336832788018405, 66.75193350819191, 56.13630208175502, 38.43456750551745, 109.44622950976762, 47.50808612164737, 30.713435660939986, 11.201650311821759, 63.65111237618275, 54.19603066412275, 10.642380580011615, 83.54963056914409, 8.600262850584139, 8.161718748914442, 51.24434873178235, 8.44424713508065, 98.41923928877563, 28.55439882955239, 32.65815375427646, 37.168317928786735, 47.56873686756554, 93.26324754218554, 70.18696921668709, 98.09001459457062, 64.9860516811857, 93.3576860552007, 21.484524284436436, 47.3595822206578, 30.058642935540153, 17.343308669199025, 5.4139285269071316, 14.245073813955734, 204.47441557922488, 11.240887075425404, 46.44492550282994, 100.36018279979368, 138.31526200958842, 14.588616188535564, 70.35091316792781, 114.2686934296154, 32.29448779622538, 72.71328280707084, 77.97995147824, 6.56279338452444, 48.2135935004094, 19.183867745030785, 5.593828698039105, 44.52395442952105, 42.680978583124556, 25.440407069568295, 105.09700064757092, 9.98699049441608, 144.88330090131439, 6.139485524141807, 9.65920409788831, 29.232975952857934, 29.56153836035588, 18.81155555616194, 27.55353164996282, 8.45572139244234, 68.68905401733839, 14.6868820849401, 88.79356125290019, 27.780737721789528, 14.61490146351328, 165.63453290076754, 5.396107474636583, 17.273413347349624, 82.78162310436932, 16.772202558185608, 14.683603987356662, 103.00593384309381, 102.68772511568264, 8.739777336701323, 129.8098469641962, 5.758577447422036, 92.96781183240445, 39.541290515808655, 21.162004235387933, 27.09699038251769, 8.551315054022199, 16.3083646892779, 38.13349498139725, 157.07068114360175, 41.994618750915286, 12.399723069669395, 25.24952400639484, 24.250253208992127, 37.3596346865646, 19.887702284580882, 35.192587221427765, 6.348784777089155, 77.08665669190594, 11.432567371865234, 8.08903885007408, 26.780000534588346, 10.48711569534171, 32.585495366817, 99.79193653654042, 53.82622546468714, 19.023326618943177, 46.43312795724431, 7.652092638984887, 14.408239067049514, 9.288771064582148, 23.88939533447212, 21.37851998473117, 38.7489261233701, 91.33671803940923, 32.77018243411384, 15.13930667655808, 11.829111518411237, 25.54645951763676, 86.55557434847148, 228.72345837103234, 91.14810742848698, 45.94295993622105, 44.618478795714736, 49.24110483715446, 57.14307837782352, 67.36822430892937, 40.98170758998134, 75.92480496699878, 63.127750094797555, 60.78163971758542, 6.161884403579074, 9.798611205531772, 54.21479418541688, 20.232495303741704, 17.925717125560077, 320.91163069341235, 8.835247729351725, 64.1261062134754, 49.58825200923429, 15.324867447556914, 17.29806121099218, 35.909129110380796, 261.3689207248872, 60.915633550381, 21.171733781107978, 16.78286802457069, 130.62945491751898, 127.68716931866044, 166.55985549452663, 47.67330555983965, 66.46563503349836, 92.23079410262305, 69.6984332992706, 143.11571346247365, 43.63129618741817, 55.500076799862214, 11.948098191112658, 41.577904122102005, 51.100902315952915, 9.816536223441695, 7.2877828609564705, 239.19309933152155, 85.72710030871391, 125.35440176997687, 24.433483025232707, 67.05967653776351, 37.079486142038846, 52.83071926185369, 50.12750948734463, 39.86168743496039, 18.014233528422032, 52.776701084490256, 19.114071810243367, 12.159015861075867, 27.42490055195696, 39.81561059667458, 48.93020049802104, 96.06996442466081, 97.17911335074533, 20.178587067102615, 39.71979965197055, 6.983918420811047, 66.53069947676676, 100.23990561210955, 18.26706180523176, 19.889695649164445, 74.58503643354547, 224.6836351397865, 13.510140130587024, 75.27666581472012, 7.4214143292372645, 9.030307530976614, 53.33229115760239, 196.9290530556184, 64.24446732652851, 47.265453672466954, 18.273422808877562, 5.48618808585354, 42.43150729905937, 17.42215160157046, 30.102112128375417, 53.72812241519544, 18.085496886969967, 41.74312590287032, 21.526659675828213, 105.27291784844152, 6.1564789841529235, 146.83939304839296, 108.03940355129953, 34.5851569898134, 112.58124673701138, 18.153360861191487, 29.353774408636454, 64.43904644848523, 55.52654888233856, 40.94247867596586, 14.358473567949403, 11.371983866837216, 27.4370683025063, 7.8802911327205, 29.149870300979785, 37.45007645147957, 78.93163462419207, 28.233300735254396, 77.87209985663941, 147.78673074666088, 41.48745506702503, 70.91108792864037, 110.36854342267705, 37.32991244848402, 66.94347943785422, 59.35706481785123, 31.13833808703919, 10.687353297327622, 7.831716342888499, 16.04026422387995, 6.508978500138619, 49.78413719281863, 21.371669340526317, 26.258868239634275, 19.179788601705482, 15.891831233979838, 54.131589430330976, 24.807074155910115, 72.71181820388054, 24.13002984078678, 55.013220263350945, 9.545303729571373, 39.881494355602825, 60.557897048576606, 6.1033926492662856, 52.68322646555326, 53.57534141166372, 100.70658925769726, 60.05822358518559, 14.911048499262257, 5.307926341929164, 107.73001612508935, 27.27023163854223, 12.001391136334027, 78.35874465626, 33.6184912696055, 85.03504876921484, 138.17659424813186, 11.633504502854983, 7.131927394445555, 172.48081682483894, 25.71842422523428, 79.01274656518638, 8.45727062556159, 163.28606358468397, 22.77390976811956, 42.116848930635925, 34.63228028103046, 53.29965069402466, 5.0465573702371875, 81.63831810341857, 20.961267334241736, 159.46097885133236, 6.731038304748857, 24.444082322259867, 12.098776485602606, 13.161454057468388, 99.03949009757909, 41.163175466753216, 20.299931254865765, 12.374032656071588, 178.6907129311934, 48.83388529108954, 26.29587142857732, 7.039127408452325, 121.47594562136948, 10.958873840436183, 50.537747420042564, 63.8207140742245, 49.9690963959366, 19.013271610440146, 31.905495051116215, 32.22649547131634, 26.32501452074806, 19.663126993387817, 51.681569903299774, 47.90398219735985, 12.592744353867733, 73.73934461651197, 14.171066397539935, 26.573084939291746, 80.04145302987178, 34.08790504678278, 10.856028103929184, 7.170396681930846, 42.27562309919628, 25.712853744012175, 73.41166248638694, 130.0888778340807, 12.859131694809545, 43.65811506069707, 5.655008826497176, 5.071097508345426, 146.32276311085042, 136.95484633629374, 72.4909579895211, 24.821374658340535, 36.41781398589543, 46.818741305064705, 19.539719924087105, 12.48042198963664, 14.991061383153074, 31.814093828493913, 135.04349897997304, 10.593714743968535, 6.5466368980671055, 6.591298663428248, 36.97859078503659, 124.96013730486762, 37.90532072883536, 44.20416617550054, 45.070480942790255, 5.0863128473228985, 60.5875684338824, 98.42641933003523, 53.770946720710434, 10.717862507449698, 53.06776703658899, 58.75716757102087, 21.54292050039149, 81.61903762246644, 34.93028445964304, 25.996951342322305, 17.122275162612098, 35.34262991964535, 5.210021876464217, 40.07252339783185, 28.63473438812528, 15.853720286743048, 6.7607121698130115, 27.444354993933256, 49.086851104380244, 22.183440880456544, 6.3136255826294665, 6.501523296805609, 123.9839044713495, 37.32590893757533, 27.857533865315073, 107.62639259630495, 110.36090240522624, 18.670363505994615, 31.973507586243535, 37.17867352658581, 28.06870535140532, 43.08253247203773, 73.00508895258068, 51.9178084498158, 12.63518044434515, 65.58822991359038, 18.1869903805335, 56.53445332496995, 59.92041727519124, 59.492758539768175, 13.608499451283839, 20.830314120140322, 8.827816631378644, 30.665742931859974, 217.76535028897132, 55.39036754182344, 22.931193193179297, 36.06935828169405, 5.203782294244494, 63.151915961933156, 90.03649684671569, 175.36985946739512, 37.29279412496582, 13.865854059453698, 14.223249971072244, 267.4231369030485, 29.865854604776008, 48.888246427280414, 237.59985276906804, 77.21868611503047, 19.010922324297432, 92.18726251381786, 11.278428392658142, 14.25243072555367, 32.821840332774165, 24.74397687307552, 44.252646976148704, 26.8523942761721, 55.922000650858934, 42.16287057004379, 34.1661564122849, 31.684171604406664, 30.713797014589815, 226.39315733840755, 21.98740705971446, 34.19813805645993, 80.84317760635926, 34.32298790559233, 23.657636740045305, 5.320308034180351, 24.634400737400405, 5.043048164234128, 72.3349125425148, 9.275033333789496, 19.225062006371946, 16.156517459342574, 78.4618293212315, 6.867439669125974, 31.77588901977064, 90.01794231562525, 41.994604891147574, 85.28866194655667, 22.66468178393401, 9.190171093962833, 5.422154867462209, 25.79642074445677, 45.46740646156389, 30.015109335377602, 16.483198388796726, 12.46281698294564, 48.17609396920279, 9.286747390488326, 23.421424335997543, 37.696100893000704, 46.24490059785041, 15.652286298377675, 14.074665312169827, 54.26757522018758, 102.92771855623741, 93.74897577861215, 53.22602756654517, 67.868175931488, 30.84797441188815, 26.192530539779025, 29.958608674784216, 18.60705880312398, 89.14161355794646, 165.81400487556468, 59.545794813274824, 53.85853370268998, 56.72339851557531, 55.71734123982487, 48.24738584400382, 103.68182017745656, 44.456405926922365, 91.5182171995352, 5.824584710837601, 40.58754723168794, 44.68352790875888, 10.491532262057232, 47.010270211249214, 12.159412514878937, 49.856772450464284, 222.96518644818985, 24.8320353887273, 61.278717632830805, 70.97934046324339, 30.328353946233364, 81.35297743725224, 93.13694204161118, 93.22038600860357, 52.18183778410835, 52.85728572322449, 38.645928228726326, 20.193724682996493, 37.830678192352856, 60.51822062429923, 14.77547968352933, 6.858166270251894, 22.544061277933775, 69.3734499916581, 35.001119687275256, 21.57019494784789, 31.784481202202464, 98.88299546245867, 5.157398670603932, 91.01910749338927, 36.95069131079748, 49.83876490402638, 11.877366161282575, 17.775964742222214, 32.81828760337853, 12.000904902292522, 43.25214437811309, 7.440107593451311, 71.34864512352081, 38.03426726594393, 26.817382229135124, 38.19454081004618, 67.85547293608394, 73.24354259719553, 37.947847470930654, 16.12743680358696, 20.97130986546325, 133.22592003483834, 15.097905018717546, 16.348195802266773, 44.33719936230854, 17.42234146375513, 66.47754770707142, 99.83917763466661, 31.598428241938862, 22.25190119710217, 28.30008106258526, 49.03736033068961, 68.72629707041185, 51.88920311247442, 42.63197300791444, 80.07226928701601, 28.698463676321023, 6.87194088977166, 122.79144934553119, 20.78838804666963, 99.73589698708986, 20.76408784291516, 120.17790538253364, 99.70798582315263, 14.418657829277306, 22.674851978853493, 30.69175569553486, 54.59387816375577, 106.2163051667248, 15.463417250187616, 33.371139352014666, 203.85470362220926, 76.33334868693561, 17.30527366641048, 12.253976839675474, 14.498842632606951, 74.70092576408717, 25.723622870107146, 9.402273789462004, 28.915059921035926, 6.530281912549563, 12.854575720272168, 11.064758703250114, 28.154030418776777, 27.508937655934353, 21.13137010412366, 27.472205002396674, 60.820040531673676, 25.65707527385451, 92.6034254488959, 9.918039093367367, 50.377512646185366, 193.82945472067286, 50.000400247735755, 87.66143366913113, 14.886796989202194, 42.85417324054545, 452.2293278931036, 20.31682397886191, 10.287813486869029, 343.4237700161091, 79.37002849618135, 13.345677087207891, 71.08486353890866, 111.975449962745, 103.89228671110033, 62.77829922665967, 12.718993664796253, 63.64009813634888, 104.87958590867235, 21.415972040099625, 104.85201651599694, 14.489498073910736, 128.20993818397835, 79.11037043107424, 14.417007961278177, 5.140717485969778, 35.85456050991572, 127.38061986119268, 5.772668395038404, 99.08532451333204, 64.05251461812904, 42.857044302492625, 94.08507569275473, 134.55151078220294, ...])
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)