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 = 45337
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);
([3349603.125, 3388006.9179713405, 3515132.8125, 3532152.325695915, 3552306.604462735, 3569092.0990390508, 3569121.6944811414, 3573500.0, 3609678.5012510098, 3609827.590185809, 3610165.625, 3610637.4340361743, 3610657.7266972917, 3612741.836583727, 3613701.17264504, 3616485.9375, 3628410.9375, 3676091.5778285568, 3676235.0357745183, 3706501.5625, 3712115.625, 3712904.6875, 3712960.0000436725, 3717393.75, 3759085.8998718224, 3761291.7475132598, 3861131.8697533505, 3888365.625, 3895137.9374820804, 3896074.1603733464, 3901807.3995302, 3902062.0703444774, 3902137.6156597137, 3902200.175733591, 3903219.2340952912, 3903249.853472672, 3906226.5625, 3911815.404952341, 3927621.1448229165, 3930216.5360643463, 3932011.57179401, 3956395.1896947604, 3961193.3565983684, 4006416.8255020482, 4006765.625, 4018259.353527529, 4028376.5625, 4029398.328923603, 4032059.866880671, 4033109.350710748, 4033413.915327969, 4033818.75, 4037172.5813330766, 4038959.244227836, 4039939.297117285, 4040421.173823995, 4076962.3974583335, 4089563.4581262534, 4125902.5342965117, 4136937.5, 4145527.235326591, 4155440.625, 4156419.267935888, 4157234.0189061095, 4172250.569632171, 4180030.618176705, 4192030.264033581, 4193089.374134874, 4197046.875, 4200958.847173213, 4201932.8125, 4212981.221748934, 4220955.275045098, 4230145.3125, 4231289.555675966, 4235387.253459165, 4235664.137804713, 4238206.6459559975, 4247428.125, 4250934.375, 4253094.58204537, 4258468.986521713, 4262245.777549541, 4262401.470986049, 4263106.25, 4263429.620111995, 4264551.5625, 4264579.548753741, 4266698.4375, 4267016.089663964, 4267575.0, 4270096.470588429, 4272615.084765284, 4275235.9375, 4279801.5625, 4280271.698016132, 4280799.869029021, 4281808.728095687, 4282355.552730924, 4282493.75, 4291001.502976331, 4291752.1377874445, 4291866.97663816, 4291879.6875, 4292089.0625, 4292229.09367697, 4292306.807807689, 4292312.40307498, 4292387.581586618, 4292408.485521385, 4292512.19016451, 4292526.393127995, 4292756.25, 4292770.730495202, 4292935.9375, 4293107.678463159, 4293169.362695906, 4293231.967091775, 4293245.15168337, 4293254.6875, 4293271.759693483, 4293281.25, 4293287.933483513, 4293372.2196295, 4293423.790823424, 4293431.369553578, 4293459.198440699, 4293482.8125, 4293499.105313412, 4293523.239915421, 4293526.375249078, 4293593.728489595, 4293628.575200159, 4293633.398194326, 4293700.454950503, 4293737.5, 4293750.82711785, 4293754.6875, 4293764.614138566, 4293780.871149602, 4293795.086162438, 4293834.975512, 4293880.380153141, 4293928.125, 4293952.307947142, 4294037.5, 4294088.421323952, 4294102.87735914, 4294113.944476296, 4294164.0625, 4294228.125, 4294231.160214081, 4294242.1020528665, 4294242.790273796, 4294246.735472072, 4294282.8125, 4294364.0625, 4294382.0024812715, 4294431.91817506, 4294443.4319056645, 4294578.529298434, 4294593.919246863, 4294594.373449002, 4294764.526685774, 4294850.9736207845, 4294852.941875088, 4294872.438838899, 4294914.0625, 4294914.222116114, 4294940.00586236, 4295019.071506454, 4295023.4375, 4295037.5, 4295052.547059558, 4295086.690406952, 4295140.924253423, 4295240.625, 4295257.8125, 4295291.649327289, 4295297.867617387, 4295384.1558449995, 4295414.0625, 4295454.798111579, 4295470.3125, 4295478.000850144, 4295503.750159481, 4295524.113119951, 4295542.1875, 4295598.601243634, 4295601.5625, 4295619.061442837, 4295684.599264566, 4295739.438726819, 4295770.3125, 4295771.61949786, 4295846.505280076, 4295846.543573225, 4295859.231616385, 4295964.963228453, 4296018.75, 4296160.9375, 4296163.538331332, 4296175.948196043, 4296216.8322860105, 4296273.132294893, 4296310.826782606, 4296370.3125, 4296396.875, 4296587.5, 4296632.8125, 4296648.924101832, 4296677.930194461, 4296906.25, 4297076.5625, 4297100.456817354, 4297121.875, 4297200.927144853, 4297222.665386573, 4297292.168611572, 4297395.3125, 4297405.066191382, 4297418.75, 4297532.8125, 4297537.5, 4297538.48172343, 4297639.119684267, 4297650.672961539, 4297666.8101546755, 4297689.46179226, 4297736.3331181025, 4297749.714743985, 4297905.014924454, 4297945.729651496, 4298092.618768286, 4298153.125, 4298230.447644354, 4298261.434209402, 4298290.090082035, 4298344.586991392, 4298834.375, 4298838.892140347, 4299065.257649091, 4299237.716921762, 4299295.36455081, 4299312.445934053, 4299376.91451427, 4299718.75, 4300133.094374624, 4300417.826577645, 4301108.568111653, 4302014.853379618, 4302144.239093733, 4302259.194326042, 4302392.1875, 4302634.772652695, 4303372.681855658, 4303518.185984753, 4303556.25, 4303806.582414765, 4304040.360375622, 4304304.028670737, 4304618.084476424, 4304717.620357236, 4307659.964270777, 4307955.403341551, 4308567.073625404, 4309842.325648234, 4312011.16885103, 4315062.299791714, 4316129.336215077, 4317363.246872921, 4317368.923800707, 4317610.989579629, 4328979.768121408, 4330265.2676797295, 4334879.531510688, 4334901.568604657, 4336113.998798882, 4336140.262508217, 4339690.552317383, 4340747.831007451, 4343685.906266351, 4344764.077287522, 4344924.609492395, 4346120.338852586, 4347965.625, 4348178.6603916185, 4350195.260252881, 4350231.856357084, 4356085.9375, 4356376.926035629, 4359111.122221728, 4359453.855755549, 4359495.616782908, 4360162.591348262, 4368727.789808999, 4372034.230943292, 4372223.4375, 4372943.490474121, 4374337.5, 4374489.202447415, 4374506.746045831, 4374852.766278635, 4375262.9286547145, 4375834.398062111, 4376566.401364444, 4376834.375, 4376923.767268216, 4377089.229369045, 4377925.735638842, 4378342.027939764, 4378923.248446914, 4379052.978032976, 4379207.8125, 4379475.104376731, 4379579.680645802, 4380072.030236788, 4381571.040022619, 4381778.998747617, 4383315.426237228, 4385065.625, 4386592.951460532, 4387217.82586253, 4391820.070885913, 4392154.832147498, 4392194.063074595, 4392264.909511118, 4392458.9679746255, 4392464.0625, 4392491.895704758, 4392582.299684406, 4392721.875, 4392731.155818217, 4392731.197212729, 4392917.1875, 4392941.420855266, 4392951.727774021, 4392975.378888151, 4393052.576600755, 4393068.061754433, 4393131.957538199, 4393165.568276592, 4393228.05990464, 4393236.749713754, 4393251.15767543, 4393254.6875, 4393290.859532755, 4393435.179212501, 4393508.695301475, 4393527.843301019, 4393540.456216754, 4393554.276235914, 4393609.375, 4393641.0105969105, 4393680.431379421, 4393744.601010163, 4393766.10146105, 4393789.3289897535, 4393838.9033384845, 4393844.997046157, 4393866.352285669, 4393882.472517993, 4393957.4358550375, 4394018.75, 4394020.3125, 4394035.20238725, 4394136.386399675, 4394271.875, 4394279.108121155, 4394317.1875, 4394356.437184626, 4394381.25, 4394435.531540005, 4394468.786161933, 4394497.775504251, 4394742.1875, 4394798.4375, 4394816.902143234, 4395112.601532506, 4395267.1875, 4395359.114859876, 4395459.369145446, 4395587.495620796, 4395819.045048405, 4396211.248823681, 4396580.6205315925, 4397023.4375, 4397246.744794198, 4397439.046177186, 4398698.4375, 4398741.983647311, 4398866.742626177, 4399326.5625, 4399368.75, 4399380.875917995, 4399429.373384568, 4399444.62328949, 4399501.529921934, 4399818.558518994, 4399957.477318961, 4399965.97689509, 4400035.9375, 4400078.008128818, 4400093.952922178, 4400148.940285405, 4400289.0625, 4400300.0, 4400338.326175752, 4400352.567403952, 4400567.2599016735, 4400662.174652151, 4400663.717585692, 4400700.0, 4400776.187586721, 4400804.6875, 4401049.626496946, 4401124.558039893, 4401148.991878976, 4401345.045932918, 4401415.85072616, 4401461.522839563, 4401511.975302157, 4401740.535496455, 4401896.357465362, 4402590.625, 4403613.463869967, 4404165.599305989, 4404170.3125, 4404407.803645173, 4404586.127644324, 4405697.190951289, 4406482.047796032, 4408999.194453096, 4414531.129495677, 4415390.290353167, 4415631.25, 4417351.5625, 4417564.0625, 4417675.60877336, 4418076.5625, 4418716.985049043, 4420350.43648627, 4422332.011109827, 4422489.0625, 4422801.5625, 4425192.6707293345, 4425200.480880539, 4426443.75, 4426455.439686441, 4427346.268595045, 4428107.789108755, 4430225.698110998, 4432917.434064352, 4434098.135981241, 4435344.639427037, 4435765.75132009, 4436723.949055312, 4436877.26912033, 4439960.9375, 4441108.456281059, 4441973.413377602, 4442569.102816232, 4445409.969201795, 4445645.295383188, 4448369.815151898, 4449155.520492718, 4449418.857732832, 4451705.01598345, 4452503.125, 4452518.75, 4452622.544799288, 4452882.977898041, 4452926.5625, 4453306.250515545, 4453325.558851104, 4453432.507235774, 4453861.261675847, 4454197.714778492, 4454247.616957512, 4454468.631853952, 4454505.598408363, 4454590.974834383, 4454607.8125, 4454672.39152589, 4454696.875, 4454868.75, 4454919.425583074, 4455150.770342245, 4455180.192216685, 4455304.6875, 4455342.1875, 4455431.320035342, 4455526.5625, 4455612.5, 4456061.3923286395, 4456204.671082415, 4456291.132488056, 4456483.179388731, 4456570.3125, 4456699.999630903, 4456772.313547874, 4456846.537038616, 4456935.9375, 4456973.225359773, 4457041.420107371, 4457058.647437519, 4457217.1875, 4457525.654023677, 4457639.141474959, 4457718.1880395245, 4457882.680491619, 4457896.582504127, 4457910.705551239, 4457937.680788426, 4458089.945785745, 4458596.875, 4458760.088099629, 4458779.6875, 4458850.011757818, 4459149.675949881, 4462523.783713927, 4462879.6875, 4462928.1957779955, 4463398.947472366, 4463923.838157372, 4468957.068683129, 4490445.638217554, 4494798.4375, 4500014.787656805, 4501559.705340257, 4502576.5625, 4502595.39101977, 4502602.805574941, 4502622.94782788, 4503807.8125, 4507778.125, 4507912.336717406, 4507918.205891086, 4508290.228859498, 4508522.034971145, 4508618.75, 4508823.145688832, 4509137.5, 4509203.082031066, 4509267.127359484, 4509784.793127152, 4510520.233635375, 4510994.349847331, 4511651.032671909, 4511802.724559965, 4511804.6875, 4511902.012255335, 4511997.887909892, 4512000.424229514, 4518475.0, 4518686.903544242, 4518755.365454366, 4520351.461036449, 4524034.099361658, 4524377.761792918, 4537742.337577185, 4537757.898769646, 4538022.375606569, 4538614.6950316075, 4539146.310571689, 4539220.3125, 4539223.247980675, 4539732.046858185, 4540265.880756883, 4540293.75, 4540909.9293060005, 4541184.8891099235, 4541309.375, 4541319.138050328, 4541501.5625, 4541865.00626877, 4541876.858719063, 4541885.641595924, 4541973.391138069, 4542093.335974573, 4542220.771205679, 4542252.2533152355, 4542256.887617634, 4542320.00480765, 4542324.737676953, 4542334.097205874, 4542342.582088046, 4542359.375, 4542460.715533408, 4542483.135736591, 4542565.477285309, 4542664.0625, 4542709.820558068, 4542762.5, 4542877.301988225, 4542928.2462919215, 4542940.373770289, 4542984.012542799, 4543243.75, 4543539.7710017385, 4543551.360892056, 4543889.0625, 4543923.667157886, 4543932.214118497, 4543996.770289057, 4543996.974932103, 4544002.857377847, 4544334.104719045, 4544453.157365748, 4544482.8125, 4544615.625, 4544919.1898794975, 4546089.33543219, 4546104.277934953, 4546151.042401531, 4546312.160005572, 4546527.018833891, 4546565.583400592, 4546567.621297692, 4546750.0, 4546881.417830838, 4547656.25, 4548418.216911066, 4553475.102669985, 4557437.211258207, 4557438.723620348, 4585893.782464803, 4593389.594792656, 4600616.191440261, 4610823.4375, 4619608.420241136, 4620023.4375, 4623814.734934932, 4626194.804902323, 4627023.4375, 4629456.2947331285, 4631782.9161810465, 4635567.927607283, 4644863.294315538, 4646044.534066635, 4652374.828067995, 4655159.375, 4657811.133787307, 4660766.171895617, 4661377.360154614, 4662701.5625, 4662856.1289148545, 4663356.395057495, 4663635.72870179, 4669493.322138012, 4669513.181724483, 4671676.226524035, 4676321.660162083, 4676896.936535621, 4682949.313958683, 4683050.769622635, 4684143.75, 4686407.8125, 4690365.625, 4691340.748117483, 4692109.370782333, 4694533.252425288, 4696939.0625, 4696948.36787177, 4697019.959651466, 4697978.837317296, 4700840.53562762, 4702871.520665789, 4703226.51742353, 4703256.408489074, 4704796.76582784, 4709286.03542046, 4714040.625, 4718232.987314507, 4724435.484123534, 4725734.375, 4734613.684883683, 4749650.0, 4751018.9019265985, 4751440.625, 4751608.790692756, 4753193.182266352, 4761495.219776822, 4762301.623784385, 4763801.587462043, 4764921.263431988, 4775894.541661191, 4778839.466892878, 4779746.876044381, 4780037.5, 4780850.0, 4781528.125, 4781963.336674663, 4782266.267244875, 4782619.987429313, 4782667.090722522, 4783876.551587173, 4784170.639343043, 4784494.08526697, 4784741.54906841, 4785237.800593195, 4785265.625, 4788047.509058501, 4788110.040231152, 4788663.219185492, 4789277.918614785, 4789810.9375, 4789875.031024155, 4790582.673953647, 4791149.43761868, 4791416.408256403, 4791543.1795425275, 4791779.755317128, 4794003.125, 4796814.021489231, 4797366.507490411, 4798263.592907142, 4802167.393708761, 4806790.625, 4806795.3125, 4807595.180059251, 4807595.760506927, 4809109.512423949, 4834086.897770904, 4843307.192529594, 4843831.96367948, 4844605.764606196, 4846170.3125, 4847467.1875, 4856367.866535968, 4862680.573718622, 4870644.984878603, 4872076.588441143, 4872827.134414552, 4876501.5625, 4878608.624194962, 4879815.257137641, 4883232.322387998, 4884354.6875, 4887369.784719101, 4889019.455417721, 4890611.727718087, 4902644.370094949, 4903043.249372596, 4906971.756370608, 4907035.829857675, 4910068.91637724, 4913567.115033172, 4913567.590428766, 4913900.415989399, 4923661.153130135, 4926407.96103865, 4926828.003701806, 4934535.876765283, 4970123.073031608, 4985934.2726879865, 5015020.3125, 5017442.1875, 5020028.3960195, 5020574.948856548, 5021373.4375, 5021695.18952705, 5021744.949343335, 5021842.332886944, 5021914.700022749, 5022275.762037414, 5022318.134321979, 5022456.25, 5022875.790487262, 5022945.44252171, 5022998.314014063, 5023581.7327144, 5023735.9375, 5024069.391238557, 5024127.222364709, 5024850.573904034, 5025282.8125, 5025292.676894525, 5025872.560792971, 5025891.5646527, 5026076.190798705, 5026223.108034395, 5026434.375, 5026540.165870344, 5026555.892562912, 5026658.826995563, 5026773.4375, 5026788.726246626, 5026828.083836667, 5026898.309091801, 5026999.335166315, 5027050.106449302, 5027054.6875, 5027056.682301039, 5027257.8125, 5027326.5625, 5027360.340703733, 5028735.9375, 5270016.676935933, 5455335.574580352, 5455960.280766103, 5456660.9375, 5574438.789888989, 5633959.375, 5636048.770333345, 5678990.8159693675, 5680042.1875, 5680171.873717619, 5680505.8134120945, 5680926.7072719615, 5681131.25, 5681398.6172577385, 5681525.5722080795, 5682481.080883226, 5683287.428040687, 5683303.96988977, 5683651.080143212, 5683792.0247369185, 5684083.0384315355, 5684887.537113311, 5684984.375, 5685003.38588101, 5685387.731844207, 5685399.044068641, 5685415.505238885, 5685458.169020612, 5685643.156478552, 5685690.840577503, 5685755.8868497005, 5685791.606823396, 5685964.0625, 5686106.25, 5686122.974211354, 5686144.667798608, 5686151.694557923, 5686234.950340546, 5686276.5625, 5686388.786939588, 5686505.260247993, 5686509.861902628, 5686643.75, 5686722.845756725, 5686845.50982209, 5686883.943165522, 5686948.4375, 5687005.305774098, 5687043.75, 5687197.347673229, 5687251.6428365735, 5687332.8125, 5687393.084433948, 5687461.737981159, 5687826.5625, 5687834.681361092, 5687874.688805222, 5688115.477296291, 5688165.40175966, 5688400.87618491, 5688455.773853331, 5688493.28019696, 5688608.285125244, 5688702.851799372, 5688715.430182079, 5688742.1875, 5688744.074635257, 5688757.10127863, 5689179.152897622, 5689184.388949343, 5689206.318194509, 5689472.490607801, 5690468.75, 5690850.5038176095, 5691625.0, 5691638.827152013, 5691755.374875968, 5691944.143920382, 5699064.202468631, 5699357.8125, 5699581.662615844, 5699706.985672839, 5699712.204680625, 5699917.1608434105, 5700126.908891285, 5700550.742271707, 5700787.885690887, 5700978.928458758, 5701496.201167037, 5701579.256017011, 5701621.652211654, 5702259.311746205, 5702309.615880402, 5702659.375, 5702773.073942794, 5702847.816057693, 5702851.335299854, 5702859.375, 5703006.425347398, 5703064.0625, 5703081.797681939, 5703108.61335271, 5703129.6875, 5703176.31947099, 5703176.36373485, 5703287.5, 5703442.1875, 5703618.990928545, 5704027.700259963, 5704029.209894969, 5704253.428149796, 5704386.900693973, 5704852.413258163, 5705317.879865877, 5705413.498513869, 5705538.7771688495, 5705716.3933764575, 5705722.44009084, 5705785.9375, 5706324.526656728, 5706329.863510602, 5706755.219704042, 5706851.5625, 5707017.1875, 5707034.596607556, 5707071.309859498, 5707110.823454784, 5707598.984615067, 5707958.059656566, 5708364.448338272, 5708542.861877895, 5708685.949468884, 5708876.888281335, 5708890.289864516, 5709795.760361309, 5711101.5625, 5711443.368677594, 5712027.11666832, 5712505.93653591, 5713099.518532909, 5713177.685786741, 5713271.2714052135, 5713518.3878326155, 5713771.296327548, 5714473.158408921, 5714796.875, 5714800.779301944, 5715023.995128366, 5715060.450366614, 5715069.705148933, 5715134.835395156, 5715144.057687336, 5715189.0625, 5715389.676126859, 5715707.8125, 5715983.424292539, 5716143.399407603, 5716445.3125, 5716752.610055346, 5716970.3125, 5717447.378005357, 5717462.05638744, 5717480.794467939, 5717836.846118493, 5718324.295069485, 5718385.9375, 5718455.029591153, 5718739.052189095, 5718914.703758372, 5719147.367267463, 5719400.664931816, 5719436.665905795, 5719879.908731915, 5719974.4994583465, 5720110.9375, 5720226.853435137, 5720251.664806467, 5720273.4214976905, 5720392.1875, 5720710.367624833, 5720973.4375, 5721293.749539307, 5721832.051178943, 5723279.6875, 5723658.638300434, 5745052.7137777135, 5745960.667461762, 5746518.4858926125, 5746744.905230233, 5747117.383673134, 5747322.105703454, 5747585.5111729065, 5748109.885567016, 5748178.810728541, 5748179.6875, 5748300.697106363, 5748335.9375, 5748407.710228114, 5748820.672139784, 5749066.237885893, 5749089.0625, 5749117.04183436, ...], [53.183235058693555, 49.435087244547404, 63.390140181770995, 8.736095213443573, 8.483360971184704, 14.614727189041249, 10.856799728945697, 63.612501988952445, 56.00298603103802, 54.14775225505602, 53.81461257887599, 27.284345693816547, 23.180938031991957, 20.62909984187653, 10.886160641315826, 87.33798404306566, 45.91184021235592, 5.375667353321436, 18.244479433523413, 91.34587166662206, 31.013045867575986, 70.75270622177278, 5.2629823444560495, 36.33151238924992, 21.966480450473792, 14.650388935698048, 12.617506554124208, 55.32929149241297, 16.92008343242165, 18.663840387924807, 22.40754612538119, 22.22474893750396, 5.248393942511937, 15.656480760906973, 30.864094733336607, 6.248861511033665, 46.20737136007426, 14.164260420237168, 32.491016348813154, 20.104697836965265, 15.242506917237492, 26.312863488613843, 55.85476538494409, 104.18036352377602, 74.86577047406826, 18.385569972004095, 129.1023137398162, 97.2418793948122, 48.162304373093875, 65.96730910449315, 34.35543682819606, 107.80483393317422, 7.320387683721595, 26.183233532910897, 17.13108441510716, 10.184016247097196, 49.216869632306725, 17.600605878423988, 29.623000753225508, 46.48230331737984, 8.677599382106726, 76.11640281466919, 8.580876147423474, 7.479329572369999, 17.671609445190544, 42.99028273252624, 47.4204491887301, 5.137218737260853, 41.46896772248614, 5.67396945622937, 30.533211138058775, 38.30273387832139, 9.883074689521061, 41.01590947498075, 60.64019025447668, 161.01746927531514, 11.24748895574762, 74.14275020744412, 61.03651959944655, 58.005557334232456, 7.358811611117798, 57.58135851412555, 17.069781868999993, 26.837246319146782, 75.4515829523117, 42.554018035435526, 96.30614036346451, 9.2167775863302, 30.390695147444475, 5.215424018610528, 58.34755512901265, 121.83093531930868, 33.631203583526926, 55.694983816192554, 36.92106386983924, 25.460485703708983, 26.180018170667555, 161.99879022446822, 69.29899157512705, 40.83172441118514, 11.035924868407212, 7.825463252309766, 127.43453222764754, 30.881515227924858, 64.21351837614809, 13.076227617166506, 89.59302286950064, 97.81953015378554, 32.1532107766682, 19.704815771680018, 102.50532977095011, 25.576226965978684, 31.746930360517272, 16.8163705805642, 40.613998712580035, 35.45227999409188, 17.936286127928327, 8.706056497272119, 14.36204382809044, 44.98080145657793, 33.49142230339065, 59.67156102728505, 6.323564705951607, 16.440777065656075, 63.22868160682563, 5.2064785176775, 54.61126722536171, 28.885670250368207, 12.361119093297495, 71.062026088669, 34.650521542675435, 37.38290707697101, 5.8480595070587515, 7.829762036307072, 5.555575783805088, 64.60345209488477, 7.9325478569359795, 84.07718583761122, 17.564044823845236, 13.49275779566511, 9.14708406323712, 131.02476019580251, 27.097434811837946, 32.13954963943961, 8.724482405265961, 74.73674944620302, 7.9743156553762296, 55.20403068743168, 50.19677157903744, 60.43894706104277, 82.57850202388352, 7.098048003945971, 14.62552876244838, 17.874375964431707, 5.803728024645182, 109.16938350163633, 51.06549814021306, 18.872819469534587, 22.09420702132246, 10.664422549400824, 20.102641178561875, 6.513953527402852, 9.920764053204053, 17.065037364123437, 10.317113698392408, 28.358820932711314, 92.82834239659059, 30.67143325063221, 28.210225376965283, 13.01118434314616, 26.88886928776893, 92.40215563674165, 73.01066049477208, 13.117536593569197, 12.551224488691956, 20.189951931212264, 57.75084001358918, 71.60241937399734, 13.222701817600242, 8.891930973059676, 30.751042530000532, 62.33309464040415, 15.38056323413899, 78.17743636756654, 26.29087741330904, 18.014861051849, 84.0157588705093, 81.4692295459112, 68.64607886746809, 104.09311579595266, 16.278205329477228, 18.070375859059276, 16.599730578105497, 68.75582426916186, 30.618734387813298, 31.92552442283381, 23.357440482723643, 10.910748739444319, 6.957719025794485, 110.20408615181546, 30.20493995535867, 39.282358107438014, 7.395203128444024, 5.446724144488483, 32.98940804296818, 32.579752417661204, 43.63644953917341, 77.08904543611469, 58.43292398798458, 47.14618333702397, 110.4460997946766, 59.45543188078309, 71.16560601774651, 84.75533028896322, 15.351282644502898, 34.53339611449047, 12.970021500232564, 72.5438562047246, 41.88723784271435, 47.319094959300116, 6.316258992144139, 110.72425783435622, 33.39884696442159, 76.37900335102294, 59.10579472950092, 5.818223563310674, 6.000234953276837, 73.98749930717828, 15.7344468119637, 11.808029327835884, 23.940920524990517, 37.74717452139531, 16.811918810921437, 96.66660379330939, 46.540821341105314, 10.0690687725869, 16.015126742468592, 20.947883559883156, 8.785045090533783, 63.07769838286528, 104.26275004978814, 22.9269327916122, 15.83822382502655, 22.39977386862497, 15.063595309133131, 16.477556789289963, 79.54901981935566, 179.1351264318073, 18.103686293549888, 25.266440955862866, 19.153098225061694, 9.782290117514227, 31.147233870907193, 87.85318595650118, 31.251214498091795, 98.36973346276591, 78.51098937880816, 31.72684250569379, 7.7280602196092785, 30.1636196942489, 12.91112734677823, 19.986875409274628, 112.89005118829024, 22.618930168188257, 18.61508844656394, 14.524538197158822, 9.451012449854106, 8.4128298036792, 90.07204832357027, 23.117030946334292, 10.054325842372048, 15.648092882705976, 16.35883233863511, 15.257970139689808, 23.04516451706307, 9.202898677071278, 25.431295443071924, 14.7041449260835, 32.828565804254296, 85.8506389747252, 198.13723789218895, 5.61231855361862, 7.6085948482098775, 28.856422759151297, 12.712886653866923, 33.13341222624192, 5.485225153623457, 27.5317820533508, 62.56805791220709, 52.86199121678898, 8.488655552623209, 63.730250993003125, 18.71888552585481, 11.639137322303238, 18.04546396883501, 13.801280716820079, 7.0840915102910715, 52.004769527364964, 14.036713006679472, 35.233308865969185, 67.02728223006554, 9.78928663532022, 38.100408046528145, 11.871058893389465, 32.32860835796474, 32.1930191466617, 94.4222975516343, 16.36743203713019, 7.166018377683926, 77.27202656837213, 14.366325421409247, 10.844526335677847, 10.905503980072313, 123.2749210990286, 11.294870096613725, 90.1159916176116, 6.287012686369917, 42.824036385498474, 12.837208186618229, 5.453299603141808, 81.99419337645998, 10.073322161110514, 18.09909434628121, 5.451490881615714, 16.80356999755217, 11.655061592840859, 20.868962007732147, 46.01231197519607, 43.13349456794508, 9.09628738257305, 21.366203415379093, 121.88528111674754, 79.2184597413041, 59.127566185527726, 39.24664996427075, 19.19020965148727, 70.94306911790154, 23.21292812755245, 21.023506812178596, 7.371935664451613, 108.40541904269057, 14.729625949766712, 11.027460468425868, 11.506531512951083, 28.74415905519662, 34.460955693797395, 15.917725802131812, 12.670260550512339, 28.77576629706444, 13.966516878695666, 7.077779403305187, 103.0735945423025, 100.07470721940736, 6.1291373054105405, 10.051010906735412, 105.53308195758876, 17.13279680672916, 5.408760349528656, 39.78880134887371, 23.55532715240165, 70.00006736021386, 23.25311742387172, 31.540709708910825, 35.334323199360604, 46.44927620754225, 68.05706098734927, 33.945512991134414, 68.46759897033239, 5.582775935453125, 48.23238793446975, 45.2681646343484, 35.819240912164915, 9.010213505343424, 11.184704615180696, 45.50891273769699, 74.00452385541489, 46.41764971133746, 13.639449810671795, 30.78781834050876, 45.32228611949193, 103.44686260989636, 83.62173085153616, 14.92484417901636, 53.39256780124872, 16.27762948663495, 118.04017292451041, 66.1619051149826, 5.241515654536744, 33.37960795807346, 42.99835481533285, 25.061829531940717, 22.06122291298765, 74.86442540751221, 112.30613367183427, 5.786810353418236, 7.493445684733361, 16.495574254375576, 99.75391578635946, 9.174578471452866, 14.021489715343407, 17.937872086311614, 38.05734756307012, 105.77261770181903, 31.388420295688512, 43.68149080931643, 41.514563994628894, 30.44842659654024, 64.0807002614713, 20.93716628438703, 8.325239270221134, 16.23417561963584, 6.052950860091257, 55.80740515827654, 37.62046314286371, 83.16384001578358, 22.855153583415436, 22.092300010326863, 12.120970959745778, 14.014311170265621, 5.626655110588224, 12.185078662630536, 13.258909616714966, 145.9294856905185, 91.62599555526197, 62.5257544535806, 35.574655024166184, 37.93853049641035, 53.90203975582889, 37.160789373289475, 22.88760626352657, 11.660287201399527, 7.91974257374009, 18.904913649328773, 42.17284722928751, 73.03016726860407, 57.779706549860464, 35.09295383190172, 59.56359509990522, 26.093720852587246, 62.16918619406188, 42.207345744833866, 18.031478051801294, 18.934873756696863, 70.87006800190859, 43.943808881690245, 17.170467144750145, 8.558372026873979, 174.6259154481586, 17.845915360494757, 13.043778197180625, 64.92922462513188, 15.262125616962514, 8.421415382415905, 35.076426574850395, 54.14405412806978, 11.331065540178093, 5.985228293677253, 102.96082169248061, 32.8054888847424, 18.133964687475274, 28.056189574678825, 11.727920244325558, 59.139386419720566, 24.35358116207299, 21.72909950823785, 19.473187484258244, 25.084168998390183, 9.625508367154154, 35.01659479254565, 98.52696142359689, 30.678062093845647, 21.07486058646818, 54.648956864684536, 9.331839134587117, 17.60695186247167, 23.683730555811557, 14.78083088230302, 6.943602032000521, 5.87099717029965, 26.389388646883507, 172.22972978097732, 16.466676673511273, 35.18149325530911, 17.359063087944293, 61.75026848307057, 48.43896483097677, 110.20280204187608, 5.4958313143561845, 7.79658931049184, 32.354347064370785, 64.05555278430718, 94.4183036823648, 80.14608291929223, 82.31914694568871, 29.0202243083408, 109.9411764925805, 5.852509162619758, 5.412687541257652, 77.62355734894666, 14.94010278459514, 22.050669360547936, 56.377467315560864, 76.91849656957051, 35.19794479892052, 155.6751724495821, 19.48830376188615, 51.19443869726219, 48.096023321512334, 16.995443956891812, 20.896504438962914, 10.927453416871623, 23.84707210339364, 7.061785624363074, 29.649826165096727, 8.816312854193713, 52.24673951522182, 12.461182984494576, 76.90741919102555, 14.986514900935338, 13.835225578991182, 11.715715872264504, 50.592466231676056, 6.276182263470892, 7.798723185806245, 6.3191813689871585, 72.78553183314048, 7.2097886306841446, 45.508852348697715, 59.966709333073496, 16.370238783568553, 28.64699911648494, 65.28853102242331, 5.331094015436238, 5.5097779736420955, 84.93663582421073, 32.732137803997794, 5.925310919964556, 21.06409283295649, 24.095771880879376, 70.39903344270934, 57.3261552086836, 52.21118176804213, 51.512590629965, 41.02932316533424, 14.71713181576082, 50.42961385763101, 49.017104655402, 51.22277034367748, 21.200621614747945, 28.752061246576275, 69.29523003823488, 5.639419856777944, 16.931692614620832, 5.846050912277335, 63.38717128460091, 20.5819997098765, 31.453176775150773, 32.699077121201064, 28.31363229244048, 9.042079739885057, 15.883337443161716, 41.43281085712728, 17.268207328098615, 5.489586637412598, 109.81232090120577, 30.796107158833276, 32.05101021281577, 30.11497158238541, 40.1823971118392, 59.11034357443527, 12.120821091551276, 17.345192446900793, 31.818023789552036, 57.81857011590241, 53.61655796131748, 121.69767314015608, 70.543299476954, 13.922077509186074, 14.565766634211752, 22.395870788160725, 17.035018412857642, 18.444238625802303, 83.30074348226796, 104.80457124608625, 47.07129408941399, 13.97880516205363, 5.213592750461947, 47.62576400203726, 24.801455949605657, 16.33547688008695, 25.91258250847413, 66.40946946077734, 11.903721326578522, 67.68760275252126, 14.868294168911497, 15.424889334709354, 7.514831154024098, 10.625858969612182, 64.4267465613024, 44.85405748855167, 62.90447172426681, 33.447550335167755, 31.561873669715613, 13.064443182199899, 14.556875502262814, 8.340139648644023, 66.2297351340808, 10.729981498067701, 18.060441918377528, 32.16520833463549, 59.29474566849939, 7.770479304717434, 16.09494293620289, 76.5814583046162, 84.15814639139307, 93.39343814532171, 17.022070057619608, 11.478597047193109, 11.880966811859093, 110.62511566107067, 15.62226455296298, 53.873101245261445, 8.917956326478127, 7.640798615086703, 72.994293606624, 40.745272583782324, 15.066710896886793, 6.1452592033455655, 8.610698472311736, 199.46029667099052, 17.905299646607748, 35.06068529751086, 8.677349246936647, 21.41764269458935, 54.3899361044753, 93.09878165492466, 6.280387196602798, 18.78474419371912, 13.192875890882842, 19.102582597258532, 14.324323029764118, 89.36066674684858, 72.19471871096022, 27.681139519959437, 12.654853394568912, 95.38460184824025, 14.499236629524955, 11.362272157451729, 6.241173786464104, 52.63171351457776, 9.983040003541968, 82.31203180924146, 24.90314064515077, 28.035881831713866, 51.16810409411865, 89.20237207680671, 42.50145944897662, 74.87262358821802, 70.45717899516124, 40.37872353844085, 28.44189119343759, 5.978654906089389, 29.198989072340876, 35.82040818145802, 104.90256300342442, 12.459433174125257, 26.874051458946862, 36.92513204816392, 33.574198675828164, 21.492631002488043, 6.076819378231563, 9.415596026002246, 86.27552982051802, 32.785988546529865, 30.067347582875755, 106.62598883854817, 10.58466438648148, 61.10386503278089, 81.1135806012324, 94.4564429270184, 13.10093039027952, 13.144290147093399, 43.98528918866488, 6.496741199040537, 34.88913749476752, 35.401811415098194, 6.174484890432544, 74.30438322843132, 14.94549160778574, 43.434778491639534, 39.56012765107478, 31.43416976030532, 12.74737570012471, 18.12406081711067, 74.74237753279786, 19.78117013261676, 37.043019307166816, 27.089194487639467, 16.394466259289104, 20.215041121324113, 53.953624548738105, 47.05405267479552, 18.07152160107863, 5.999509999283047, 18.638230785937974, 31.76722671370233, 83.49774469644696, 5.204213039794453, 44.91122369478572, 62.566905089724855, 5.267608911473953, 6.197718706782202, 15.206454261559612, 44.08439836536193, 142.46534786517816, 10.208648331392725, 13.410102718903499, 11.466083784640675, 46.28096375084765, 28.657266648325226, 43.09905346948372, 16.976818814012734, 15.492520002228853, 53.444157741726784, 36.36431251917229, 8.703849543896407, 8.952138496194477, 46.98978944242189, 28.99831888588689, 18.365230990604132, 100.5841573910837, 13.82431786119964, 114.59735330252656, 17.685378520480516, 32.36961979536156, 33.82474301053946, 9.038588825203398, 20.34127850241267, 73.0906696468792, 70.96109584298647, 42.615972906009446, 33.70835137042878, 202.51244282165192, 10.426041523268223, 16.156529094818197, 26.56387814460836, 83.16142428453067, 27.168873078349908, 88.69153978427826, 26.700230476619545, 6.52143287557949, 29.33687569163506, 5.3938570750559, 5.530140136539494, 47.39846077560931, 5.8064486392719425, 73.02983825839229, 52.461250610218784, 6.302057927698745, 27.551923326948298, 53.098668411602674, 63.67029616086864, 48.37052645657395, 11.36282333591947, 26.3184980381794, 18.94157627163565, 13.694447654006094, 88.54240268408894, 19.150179678186532, 75.98247987559776, 14.49084019971574, 11.976523653712178, 104.61101951029988, 12.303538931955247, 26.693661907874763, 12.16127739099705, 51.01628572673128, 5.738628746287874, 32.48336185743737, 6.393694441193501, 13.691719081522734, 18.5084376993349, 41.78016412973155, 21.910728010739643, 50.371343273297825, 14.380740765541457, 59.95214237802037, 13.798056466745408, 11.063969711410266, 26.221537793677214, 98.45515827777857, 5.2943867657640595, 40.36792777189758, 9.72579998960363, 87.94033922589536, 86.54616907430761, 57.23219061901627, 68.42446020516772, 5.77714465839727, 22.978979548352882, 88.34232084262977, 66.23968296370246, 8.14749194815142, 72.68326421739903, 6.8318245072706825, 28.13488138760826, 77.21826757958753, 6.486890225119882, 47.09005053628705, 9.456891373432718, 42.79047919350294, 5.169569273843563, 47.98881802104234, 90.94998223926443, 54.542945684263394, 141.2350483517288, 5.154278005148703, 45.52359451811644, 23.465399537453123, 17.162579962180693, 50.43416852288744, 7.191760577227865, 19.047919482094173, 83.68883087512778, 14.5038731811327, 7.218433548035261, 13.077008378598851, 38.38318970914781, 10.60386302906241, 26.098127821480787, 49.29125832286602, 33.75655340671393, 79.25123283728698, 12.946476062661507, 6.7901604319472435, 6.342732134367457, 103.41330949995029, 7.506522770108909, 95.78610379805374, 22.722879055844142, 28.628558224965246, 5.376324026253552, 20.98128100776367, 8.991136532414703, 40.77816079094108, 8.643034589369584, 59.17063811879994, 37.595939134930326, 15.256818846245974, 65.1318864583423, 97.10138088285193, 43.71240764943204, 57.932842876516816, 6.120548229564612, 23.608789432470722, 17.2748881816852, 31.873411433655654, 26.64695208861525, 13.391852915504659, 83.69149709381426, 53.40697912643449, 13.993300759765706, 109.3724345994087, 35.84186917962367, 11.676107276371154, 6.94625399938961, 13.23226687623396, 14.994945682939248, 7.139494049881809, 17.95456285054733, 62.63174907103709, 8.57227372956741, 56.10233654988802, 94.50288278224338, 74.91111531279618, 97.35653668122919, 44.185138138530704, 55.0078535388649, 52.666576623543044, 12.511998268620076, 80.68038444339871, 9.308964775312422, 11.716043193169584, 6.006763193347043, 51.20292513395372, 19.247281641992533, 24.424694603424243, 6.214180514107087, 20.443948472893844, 28.187516485020762, 15.94665136173592, 84.72312729148896, 5.515692339814456, 20.361548379422967, 64.03753695967754, 51.700636469726334, 43.90019073499236, 31.28553383368027, 22.176893530799006, 35.42427060621388, 118.09832606048539, 24.50680742623219, 10.830615140429703, 69.81552734719398, 57.31678158556897, 15.946871296177267, 106.59543406540786, 13.387801930384567, 21.365278786109737, 16.08863495287302, 17.314587563126416, 18.45470565001418, 10.347442272754014, 41.917750360133, 25.63291114333439, 12.143032367734953, 35.169199286677404, 13.399650289321277, 9.484800552554635, 5.987132981115714, 115.47573228368927, 100.68432624420385, 60.15078880814619, 13.151113168642256, 53.92937329424443, 17.537276041109063, 32.61592988097948, 67.18901392413254, 8.678590412957703, 14.987326290243665, 7.725476148306347, 61.138993887857794, 9.741160470311588, 47.45745792834277, 25.73702458419373, 29.147509187670614, 13.86770623574249, 32.91073797621834, 87.82081903142884, 6.9713370422036265, 22.987844099379352, 46.57653214759695, 32.8579237165963, 46.68779379193506, 7.911712718204638, 5.109591714108577, 6.999027929848991, 48.19940772151752, 17.044257953519516, 7.204752447529972, 40.05835487354582, 32.49302081768092, 56.68390988969162, 9.908471901048479, 82.80963063358317, 58.80176381207245, 105.70598665836613, 39.04252372076326, 42.51313482341425, 13.48317728945169, 78.97657804668088, 12.923473833997766, 5.880280198618075, 42.314227146126115, 9.638440829471847, 28.32249457583684, 19.422708680436365, 16.812317340402764, 29.234356635376248, 20.083167050479908, 40.157606171533885, 36.936711698516, 37.87809579534052, 5.210897973959334, 16.14360862944445, 96.3328343308068, 35.1980332379694, 29.509029676561916, 52.17600418094795, 38.440916737342164, 8.761154742459585, 50.00611552956412, 83.74782966072893, 13.575946279443786, 14.003305598340745, 14.022125005334734, 88.23531511029722, 14.823946841298689, 11.508532111638646, 59.62738166623078, 7.2624593518539164, 67.59388118322661, 41.21519870247705, 25.391148013679143, 82.89597480612656, 46.59171937611694, 25.07958516955071, 31.421305727134907, 57.692562661890925, 7.5513890724326, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3349603.125, 3388006.9179713405, 3515132.8125, 3532152.325695915, 3552306.604462735, 3569092.0990390508, 3569121.6944811414, 3573500.0, 3609678.5012510098, 3609827.590185809, 3610165.625, 3610637.4340361743, 3610657.7266972917, 3612741.836583727, 3613701.17264504, 3616485.9375, 3628410.9375, 3676091.5778285568, 3676235.0357745183, 3706501.5625, 3712115.625, 3712904.6875, 3712960.0000436725, 3717393.75, 3759085.8998718224, 3761291.7475132598, 3861131.8697533505, 3888365.625, 3895137.9374820804, 3896074.1603733464, 3901807.3995302, 3902062.0703444774, 3902137.6156597137, 3902200.175733591, 3903219.2340952912, 3903249.853472672, 3906226.5625, 3911815.404952341, 3927621.1448229165, 3930216.5360643463, 3932011.57179401, 3956395.1896947604, 3961193.3565983684, 4006416.8255020482, 4006765.625, 4018259.353527529, 4028376.5625, 4029398.328923603, 4032059.866880671, 4033109.350710748, 4033413.915327969, 4033818.75, 4037172.5813330766, 4038959.244227836, 4039939.297117285, 4040421.173823995, 4076962.3974583335, 4089563.4581262534, 4125902.5342965117, 4136937.5, 4145527.235326591, 4155440.625, 4156419.267935888, 4157234.0189061095, 4172250.569632171, 4180030.618176705, 4192030.264033581, 4193089.374134874, 4197046.875, 4200958.847173213, 4201932.8125, 4212981.221748934, 4220955.275045098, 4230145.3125, 4231289.555675966, 4235387.253459165, 4235664.137804713, 4238206.6459559975, 4247428.125, 4250934.375, 4253094.58204537, 4258468.986521713, 4262245.777549541, 4262401.470986049, 4263106.25, 4263429.620111995, 4264551.5625, 4264579.548753741, 4266698.4375, 4267016.089663964, 4267575.0, 4270096.470588429, 4272615.084765284, 4275235.9375, 4279801.5625, 4280271.698016132, 4280799.869029021, 4281808.728095687, 4282355.552730924, 4282493.75, 4291001.502976331, 4291752.1377874445, 4291866.97663816, 4291879.6875, 4292089.0625, 4292229.09367697, 4292306.807807689, 4292312.40307498, 4292387.581586618, 4292408.485521385, 4292512.19016451, 4292526.393127995, 4292756.25, 4292770.730495202, 4292935.9375, 4293107.678463159, 4293169.362695906, 4293231.967091775, 4293245.15168337, 4293254.6875, 4293271.759693483, 4293281.25, 4293287.933483513, 4293372.2196295, 4293423.790823424, 4293431.369553578, 4293459.198440699, 4293482.8125, 4293499.105313412, 4293523.239915421, 4293526.375249078, 4293593.728489595, 4293628.575200159, 4293633.398194326, 4293700.454950503, 4293737.5, 4293750.82711785, 4293754.6875, 4293764.614138566, 4293780.871149602, 4293795.086162438, 4293834.975512, 4293880.380153141, 4293928.125, 4293952.307947142, 4294037.5, 4294088.421323952, 4294102.87735914, 4294113.944476296, 4294164.0625, 4294228.125, 4294231.160214081, 4294242.1020528665, 4294242.790273796, 4294246.735472072, 4294282.8125, 4294364.0625, 4294382.0024812715, 4294431.91817506, 4294443.4319056645, 4294578.529298434, 4294593.919246863, 4294594.373449002, 4294764.526685774, 4294850.9736207845, 4294852.941875088, 4294872.438838899, 4294914.0625, 4294914.222116114, 4294940.00586236, 4295019.071506454, 4295023.4375, 4295037.5, 4295052.547059558, 4295086.690406952, 4295140.924253423, 4295240.625, 4295257.8125, 4295291.649327289, 4295297.867617387, 4295384.1558449995, 4295414.0625, 4295454.798111579, 4295470.3125, 4295478.000850144, 4295503.750159481, 4295524.113119951, 4295542.1875, 4295598.601243634, 4295601.5625, 4295619.061442837, 4295684.599264566, 4295739.438726819, 4295770.3125, 4295771.61949786, 4295846.505280076, 4295846.543573225, 4295859.231616385, 4295964.963228453, 4296018.75, 4296160.9375, 4296163.538331332, 4296175.948196043, 4296216.8322860105, 4296273.132294893, 4296310.826782606, 4296370.3125, 4296396.875, 4296587.5, 4296632.8125, 4296648.924101832, 4296677.930194461, 4296906.25, 4297076.5625, 4297100.456817354, 4297121.875, 4297200.927144853, 4297222.665386573, 4297292.168611572, 4297395.3125, 4297405.066191382, 4297418.75, 4297532.8125, 4297537.5, 4297538.48172343, 4297639.119684267, 4297650.672961539, 4297666.8101546755, 4297689.46179226, 4297736.3331181025, 4297749.714743985, 4297905.014924454, 4297945.729651496, 4298092.618768286, 4298153.125, 4298230.447644354, 4298261.434209402, 4298290.090082035, 4298344.586991392, 4298834.375, 4298838.892140347, 4299065.257649091, 4299237.716921762, 4299295.36455081, 4299312.445934053, 4299376.91451427, 4299718.75, 4300133.094374624, 4300417.826577645, 4301108.568111653, 4302014.853379618, 4302144.239093733, 4302259.194326042, 4302392.1875, 4302634.772652695, 4303372.681855658, 4303518.185984753, 4303556.25, 4303806.582414765, 4304040.360375622, 4304304.028670737, 4304618.084476424, 4304717.620357236, 4307659.964270777, 4307955.403341551, 4308567.073625404, 4309842.325648234, 4312011.16885103, 4315062.299791714, 4316129.336215077, 4317363.246872921, 4317368.923800707, 4317610.989579629, 4328979.768121408, 4330265.2676797295, 4334879.531510688, 4334901.568604657, 4336113.998798882, 4336140.262508217, 4339690.552317383, 4340747.831007451, 4343685.906266351, 4344764.077287522, 4344924.609492395, 4346120.338852586, 4347965.625, 4348178.6603916185, 4350195.260252881, 4350231.856357084, 4356085.9375, 4356376.926035629, 4359111.122221728, 4359453.855755549, 4359495.616782908, 4360162.591348262, 4368727.789808999, 4372034.230943292, 4372223.4375, 4372943.490474121, 4374337.5, 4374489.202447415, 4374506.746045831, 4374852.766278635, 4375262.9286547145, 4375834.398062111, 4376566.401364444, 4376834.375, 4376923.767268216, 4377089.229369045, 4377925.735638842, 4378342.027939764, 4378923.248446914, 4379052.978032976, 4379207.8125, 4379475.104376731, 4379579.680645802, 4380072.030236788, 4381571.040022619, 4381778.998747617, 4383315.426237228, 4385065.625, 4386592.951460532, 4387217.82586253, 4391820.070885913, 4392154.832147498, 4392194.063074595, 4392264.909511118, 4392458.9679746255, 4392464.0625, 4392491.895704758, 4392582.299684406, 4392721.875, 4392731.155818217, 4392731.197212729, 4392917.1875, 4392941.420855266, 4392951.727774021, 4392975.378888151, 4393052.576600755, 4393068.061754433, 4393131.957538199, 4393165.568276592, 4393228.05990464, 4393236.749713754, 4393251.15767543, 4393254.6875, 4393290.859532755, 4393435.179212501, 4393508.695301475, 4393527.843301019, 4393540.456216754, 4393554.276235914, 4393609.375, 4393641.0105969105, 4393680.431379421, 4393744.601010163, 4393766.10146105, 4393789.3289897535, 4393838.9033384845, 4393844.997046157, 4393866.352285669, 4393882.472517993, 4393957.4358550375, 4394018.75, 4394020.3125, 4394035.20238725, 4394136.386399675, 4394271.875, 4394279.108121155, 4394317.1875, 4394356.437184626, 4394381.25, 4394435.531540005, 4394468.786161933, 4394497.775504251, 4394742.1875, 4394798.4375, 4394816.902143234, 4395112.601532506, 4395267.1875, 4395359.114859876, 4395459.369145446, 4395587.495620796, 4395819.045048405, 4396211.248823681, 4396580.6205315925, 4397023.4375, 4397246.744794198, 4397439.046177186, 4398698.4375, 4398741.983647311, 4398866.742626177, 4399326.5625, 4399368.75, 4399380.875917995, 4399429.373384568, 4399444.62328949, 4399501.529921934, 4399818.558518994, 4399957.477318961, 4399965.97689509, 4400035.9375, 4400078.008128818, 4400093.952922178, 4400148.940285405, 4400289.0625, 4400300.0, 4400338.326175752, 4400352.567403952, 4400567.2599016735, 4400662.174652151, 4400663.717585692, 4400700.0, 4400776.187586721, 4400804.6875, 4401049.626496946, 4401124.558039893, 4401148.991878976, 4401345.045932918, 4401415.85072616, 4401461.522839563, 4401511.975302157, 4401740.535496455, 4401896.357465362, 4402590.625, 4403613.463869967, 4404165.599305989, 4404170.3125, 4404407.803645173, 4404586.127644324, 4405697.190951289, 4406482.047796032, 4408999.194453096, 4414531.129495677, 4415390.290353167, 4415631.25, 4417351.5625, 4417564.0625, 4417675.60877336, 4418076.5625, 4418716.985049043, 4420350.43648627, 4422332.011109827, 4422489.0625, 4422801.5625, 4425192.6707293345, 4425200.480880539, 4426443.75, 4426455.439686441, 4427346.268595045, 4428107.789108755, 4430225.698110998, 4432917.434064352, 4434098.135981241, 4435344.639427037, 4435765.75132009, 4436723.949055312, 4436877.26912033, 4439960.9375, 4441108.456281059, 4441973.413377602, 4442569.102816232, 4445409.969201795, 4445645.295383188, 4448369.815151898, 4449155.520492718, 4449418.857732832, 4451705.01598345, 4452503.125, 4452518.75, 4452622.544799288, 4452882.977898041, 4452926.5625, 4453306.250515545, 4453325.558851104, 4453432.507235774, 4453861.261675847, 4454197.714778492, 4454247.616957512, 4454468.631853952, 4454505.598408363, 4454590.974834383, 4454607.8125, 4454672.39152589, 4454696.875, 4454868.75, 4454919.425583074, 4455150.770342245, 4455180.192216685, 4455304.6875, 4455342.1875, 4455431.320035342, 4455526.5625, 4455612.5, 4456061.3923286395, 4456204.671082415, 4456291.132488056, 4456483.179388731, 4456570.3125, 4456699.999630903, 4456772.313547874, 4456846.537038616, 4456935.9375, 4456973.225359773, 4457041.420107371, 4457058.647437519, 4457217.1875, 4457525.654023677, 4457639.141474959, 4457718.1880395245, 4457882.680491619, 4457896.582504127, 4457910.705551239, 4457937.680788426, 4458089.945785745, 4458596.875, 4458760.088099629, 4458779.6875, 4458850.011757818, 4459149.675949881, 4462523.783713927, 4462879.6875, 4462928.1957779955, 4463398.947472366, 4463923.838157372, 4468957.068683129, 4490445.638217554, 4494798.4375, 4500014.787656805, 4501559.705340257, 4502576.5625, 4502595.39101977, 4502602.805574941, 4502622.94782788, 4503807.8125, 4507778.125, 4507912.336717406, 4507918.205891086, 4508290.228859498, 4508522.034971145, 4508618.75, 4508823.145688832, 4509137.5, 4509203.082031066, 4509267.127359484, 4509784.793127152, 4510520.233635375, 4510994.349847331, 4511651.032671909, 4511802.724559965, 4511804.6875, 4511902.012255335, 4511997.887909892, 4512000.424229514, 4518475.0, 4518686.903544242, 4518755.365454366, 4520351.461036449, 4524034.099361658, 4524377.761792918, 4537742.337577185, 4537757.898769646, 4538022.375606569, 4538614.6950316075, 4539146.310571689, 4539220.3125, 4539223.247980675, 4539732.046858185, 4540265.880756883, 4540293.75, 4540909.9293060005, 4541184.8891099235, 4541309.375, 4541319.138050328, 4541501.5625, 4541865.00626877, 4541876.858719063, 4541885.641595924, 4541973.391138069, 4542093.335974573, 4542220.771205679, 4542252.2533152355, 4542256.887617634, 4542320.00480765, 4542324.737676953, 4542334.097205874, 4542342.582088046, 4542359.375, 4542460.715533408, 4542483.135736591, 4542565.477285309, 4542664.0625, 4542709.820558068, 4542762.5, 4542877.301988225, 4542928.2462919215, 4542940.373770289, 4542984.012542799, 4543243.75, 4543539.7710017385, 4543551.360892056, 4543889.0625, 4543923.667157886, 4543932.214118497, 4543996.770289057, 4543996.974932103, 4544002.857377847, 4544334.104719045, 4544453.157365748, 4544482.8125, 4544615.625, 4544919.1898794975, 4546089.33543219, 4546104.277934953, 4546151.042401531, 4546312.160005572, 4546527.018833891, 4546565.583400592, 4546567.621297692, 4546750.0, 4546881.417830838, 4547656.25, 4548418.216911066, 4553475.102669985, 4557437.211258207, 4557438.723620348, 4585893.782464803, 4593389.594792656, 4600616.191440261, 4610823.4375, 4619608.420241136, 4620023.4375, 4623814.734934932, 4626194.804902323, 4627023.4375, 4629456.2947331285, 4631782.9161810465, 4635567.927607283, 4644863.294315538, 4646044.534066635, 4652374.828067995, 4655159.375, 4657811.133787307, 4660766.171895617, 4661377.360154614, 4662701.5625, 4662856.1289148545, 4663356.395057495, 4663635.72870179, 4669493.322138012, 4669513.181724483, 4671676.226524035, 4676321.660162083, 4676896.936535621, 4682949.313958683, 4683050.769622635, 4684143.75, 4686407.8125, 4690365.625, 4691340.748117483, 4692109.370782333, 4694533.252425288, 4696939.0625, 4696948.36787177, 4697019.959651466, 4697978.837317296, 4700840.53562762, 4702871.520665789, 4703226.51742353, 4703256.408489074, 4704796.76582784, 4709286.03542046, 4714040.625, 4718232.987314507, 4724435.484123534, 4725734.375, 4734613.684883683, 4749650.0, 4751018.9019265985, 4751440.625, 4751608.790692756, 4753193.182266352, 4761495.219776822, 4762301.623784385, 4763801.587462043, 4764921.263431988, 4775894.541661191, 4778839.466892878, 4779746.876044381, 4780037.5, 4780850.0, 4781528.125, 4781963.336674663, 4782266.267244875, 4782619.987429313, 4782667.090722522, 4783876.551587173, 4784170.639343043, 4784494.08526697, 4784741.54906841, 4785237.800593195, 4785265.625, 4788047.509058501, 4788110.040231152, 4788663.219185492, 4789277.918614785, 4789810.9375, 4789875.031024155, 4790582.673953647, 4791149.43761868, 4791416.408256403, 4791543.1795425275, 4791779.755317128, 4794003.125, 4796814.021489231, 4797366.507490411, 4798263.592907142, 4802167.393708761, 4806790.625, 4806795.3125, 4807595.180059251, 4807595.760506927, 4809109.512423949, 4834086.897770904, 4843307.192529594, 4843831.96367948, 4844605.764606196, 4846170.3125, 4847467.1875, 4856367.866535968, 4862680.573718622, 4870644.984878603, 4872076.588441143, 4872827.134414552, 4876501.5625, 4878608.624194962, 4879815.257137641, 4883232.322387998, 4884354.6875, 4887369.784719101, 4889019.455417721, 4890611.727718087, 4902644.370094949, 4903043.249372596, 4906971.756370608, 4907035.829857675, 4910068.91637724, 4913567.115033172, 4913567.590428766, 4913900.415989399, 4923661.153130135, 4926407.96103865, 4926828.003701806, 4934535.876765283, 4970123.073031608, 4985934.2726879865, 5015020.3125, 5017442.1875, 5020028.3960195, 5020574.948856548, 5021373.4375, 5021695.18952705, 5021744.949343335, 5021842.332886944, 5021914.700022749, 5022275.762037414, 5022318.134321979, 5022456.25, 5022875.790487262, 5022945.44252171, 5022998.314014063, 5023581.7327144, 5023735.9375, 5024069.391238557, 5024127.222364709, 5024850.573904034, 5025282.8125, 5025292.676894525, 5025872.560792971, 5025891.5646527, 5026076.190798705, 5026223.108034395, 5026434.375, 5026540.165870344, 5026555.892562912, 5026658.826995563, 5026773.4375, 5026788.726246626, 5026828.083836667, 5026898.309091801, 5026999.335166315, 5027050.106449302, 5027054.6875, 5027056.682301039, 5027257.8125, 5027326.5625, 5027360.340703733, 5028735.9375, 5270016.676935933, 5455335.574580352, 5455960.280766103, 5456660.9375, 5574438.789888989, 5633959.375, 5636048.770333345, 5678990.8159693675, 5680042.1875, 5680171.873717619, 5680505.8134120945, 5680926.7072719615, 5681131.25, 5681398.6172577385, 5681525.5722080795, 5682481.080883226, 5683287.428040687, 5683303.96988977, 5683651.080143212, 5683792.0247369185, 5684083.0384315355, 5684887.537113311, 5684984.375, 5685003.38588101, 5685387.731844207, 5685399.044068641, 5685415.505238885, 5685458.169020612, 5685643.156478552, 5685690.840577503, 5685755.8868497005, 5685791.606823396, 5685964.0625, 5686106.25, 5686122.974211354, 5686144.667798608, 5686151.694557923, 5686234.950340546, 5686276.5625, 5686388.786939588, 5686505.260247993, 5686509.861902628, 5686643.75, 5686722.845756725, 5686845.50982209, 5686883.943165522, 5686948.4375, 5687005.305774098, 5687043.75, 5687197.347673229, 5687251.6428365735, 5687332.8125, 5687393.084433948, 5687461.737981159, 5687826.5625, 5687834.681361092, 5687874.688805222, 5688115.477296291, 5688165.40175966, 5688400.87618491, 5688455.773853331, 5688493.28019696, 5688608.285125244, 5688702.851799372, 5688715.430182079, 5688742.1875, 5688744.074635257, 5688757.10127863, 5689179.152897622, 5689184.388949343, 5689206.318194509, 5689472.490607801, 5690468.75, 5690850.5038176095, 5691625.0, 5691638.827152013, 5691755.374875968, 5691944.143920382, 5699064.202468631, 5699357.8125, 5699581.662615844, 5699706.985672839, 5699712.204680625, 5699917.1608434105, 5700126.908891285, 5700550.742271707, 5700787.885690887, 5700978.928458758, 5701496.201167037, 5701579.256017011, 5701621.652211654, 5702259.311746205, 5702309.615880402, 5702659.375, 5702773.073942794, 5702847.816057693, 5702851.335299854, 5702859.375, 5703006.425347398, 5703064.0625, 5703081.797681939, 5703108.61335271, 5703129.6875, 5703176.31947099, 5703176.36373485, 5703287.5, 5703442.1875, 5703618.990928545, 5704027.700259963, 5704029.209894969, 5704253.428149796, 5704386.900693973, 5704852.413258163, 5705317.879865877, 5705413.498513869, 5705538.7771688495, 5705716.3933764575, 5705722.44009084, 5705785.9375, 5706324.526656728, 5706329.863510602, 5706755.219704042, 5706851.5625, 5707017.1875, 5707034.596607556, 5707071.309859498, 5707110.823454784, 5707598.984615067, 5707958.059656566, 5708364.448338272, 5708542.861877895, 5708685.949468884, 5708876.888281335, 5708890.289864516, 5709795.760361309, 5711101.5625, 5711443.368677594, 5712027.11666832, 5712505.93653591, 5713099.518532909, 5713177.685786741, 5713271.2714052135, 5713518.3878326155, 5713771.296327548, 5714473.158408921, 5714796.875, 5714800.779301944, 5715023.995128366, 5715060.450366614, 5715069.705148933, 5715134.835395156, 5715144.057687336, 5715189.0625, 5715389.676126859, 5715707.8125, 5715983.424292539, 5716143.399407603, 5716445.3125, 5716752.610055346, 5716970.3125, 5717447.378005357, 5717462.05638744, 5717480.794467939, 5717836.846118493, 5718324.295069485, 5718385.9375, 5718455.029591153, 5718739.052189095, 5718914.703758372, 5719147.367267463, 5719400.664931816, 5719436.665905795, 5719879.908731915, 5719974.4994583465, 5720110.9375, 5720226.853435137, 5720251.664806467, 5720273.4214976905, 5720392.1875, 5720710.367624833, 5720973.4375, 5721293.749539307, 5721832.051178943, 5723279.6875, 5723658.638300434, 5745052.7137777135, 5745960.667461762, 5746518.4858926125, 5746744.905230233, 5747117.383673134, 5747322.105703454, 5747585.5111729065, 5748109.885567016, 5748178.810728541, 5748179.6875, 5748300.697106363, 5748335.9375, 5748407.710228114, 5748820.672139784, 5749066.237885893, 5749089.0625, 5749117.04183436, ...], [53.183235058693555, 49.435087244547404, 63.390140181770995, 8.736095213443573, 8.483360971184704, 14.614727189041249, 10.856799728945697, 63.612501988952445, 56.00298603103802, 54.14775225505602, 53.81461257887599, 27.284345693816547, 23.180938031991957, 20.62909984187653, 10.886160641315826, 87.33798404306566, 45.91184021235592, 5.375667353321436, 18.244479433523413, 91.34587166662206, 31.013045867575986, 70.75270622177278, 5.2629823444560495, 36.33151238924992, 21.966480450473792, 14.650388935698048, 12.617506554124208, 55.32929149241297, 16.92008343242165, 18.663840387924807, 22.40754612538119, 22.22474893750396, 5.248393942511937, 15.656480760906973, 30.864094733336607, 6.248861511033665, 46.20737136007426, 14.164260420237168, 32.491016348813154, 20.104697836965265, 15.242506917237492, 26.312863488613843, 55.85476538494409, 104.18036352377602, 74.86577047406826, 18.385569972004095, 129.1023137398162, 97.2418793948122, 48.162304373093875, 65.96730910449315, 34.35543682819606, 107.80483393317422, 7.320387683721595, 26.183233532910897, 17.13108441510716, 10.184016247097196, 49.216869632306725, 17.600605878423988, 29.623000753225508, 46.48230331737984, 8.677599382106726, 76.11640281466919, 8.580876147423474, 7.479329572369999, 17.671609445190544, 42.99028273252624, 47.4204491887301, 5.137218737260853, 41.46896772248614, 5.67396945622937, 30.533211138058775, 38.30273387832139, 9.883074689521061, 41.01590947498075, 60.64019025447668, 161.01746927531514, 11.24748895574762, 74.14275020744412, 61.03651959944655, 58.005557334232456, 7.358811611117798, 57.58135851412555, 17.069781868999993, 26.837246319146782, 75.4515829523117, 42.554018035435526, 96.30614036346451, 9.2167775863302, 30.390695147444475, 5.215424018610528, 58.34755512901265, 121.83093531930868, 33.631203583526926, 55.694983816192554, 36.92106386983924, 25.460485703708983, 26.180018170667555, 161.99879022446822, 69.29899157512705, 40.83172441118514, 11.035924868407212, 7.825463252309766, 127.43453222764754, 30.881515227924858, 64.21351837614809, 13.076227617166506, 89.59302286950064, 97.81953015378554, 32.1532107766682, 19.704815771680018, 102.50532977095011, 25.576226965978684, 31.746930360517272, 16.8163705805642, 40.613998712580035, 35.45227999409188, 17.936286127928327, 8.706056497272119, 14.36204382809044, 44.98080145657793, 33.49142230339065, 59.67156102728505, 6.323564705951607, 16.440777065656075, 63.22868160682563, 5.2064785176775, 54.61126722536171, 28.885670250368207, 12.361119093297495, 71.062026088669, 34.650521542675435, 37.38290707697101, 5.8480595070587515, 7.829762036307072, 5.555575783805088, 64.60345209488477, 7.9325478569359795, 84.07718583761122, 17.564044823845236, 13.49275779566511, 9.14708406323712, 131.02476019580251, 27.097434811837946, 32.13954963943961, 8.724482405265961, 74.73674944620302, 7.9743156553762296, 55.20403068743168, 50.19677157903744, 60.43894706104277, 82.57850202388352, 7.098048003945971, 14.62552876244838, 17.874375964431707, 5.803728024645182, 109.16938350163633, 51.06549814021306, 18.872819469534587, 22.09420702132246, 10.664422549400824, 20.102641178561875, 6.513953527402852, 9.920764053204053, 17.065037364123437, 10.317113698392408, 28.358820932711314, 92.82834239659059, 30.67143325063221, 28.210225376965283, 13.01118434314616, 26.88886928776893, 92.40215563674165, 73.01066049477208, 13.117536593569197, 12.551224488691956, 20.189951931212264, 57.75084001358918, 71.60241937399734, 13.222701817600242, 8.891930973059676, 30.751042530000532, 62.33309464040415, 15.38056323413899, 78.17743636756654, 26.29087741330904, 18.014861051849, 84.0157588705093, 81.4692295459112, 68.64607886746809, 104.09311579595266, 16.278205329477228, 18.070375859059276, 16.599730578105497, 68.75582426916186, 30.618734387813298, 31.92552442283381, 23.357440482723643, 10.910748739444319, 6.957719025794485, 110.20408615181546, 30.20493995535867, 39.282358107438014, 7.395203128444024, 5.446724144488483, 32.98940804296818, 32.579752417661204, 43.63644953917341, 77.08904543611469, 58.43292398798458, 47.14618333702397, 110.4460997946766, 59.45543188078309, 71.16560601774651, 84.75533028896322, 15.351282644502898, 34.53339611449047, 12.970021500232564, 72.5438562047246, 41.88723784271435, 47.319094959300116, 6.316258992144139, 110.72425783435622, 33.39884696442159, 76.37900335102294, 59.10579472950092, 5.818223563310674, 6.000234953276837, 73.98749930717828, 15.7344468119637, 11.808029327835884, 23.940920524990517, 37.74717452139531, 16.811918810921437, 96.66660379330939, 46.540821341105314, 10.0690687725869, 16.015126742468592, 20.947883559883156, 8.785045090533783, 63.07769838286528, 104.26275004978814, 22.9269327916122, 15.83822382502655, 22.39977386862497, 15.063595309133131, 16.477556789289963, 79.54901981935566, 179.1351264318073, 18.103686293549888, 25.266440955862866, 19.153098225061694, 9.782290117514227, 31.147233870907193, 87.85318595650118, 31.251214498091795, 98.36973346276591, 78.51098937880816, 31.72684250569379, 7.7280602196092785, 30.1636196942489, 12.91112734677823, 19.986875409274628, 112.89005118829024, 22.618930168188257, 18.61508844656394, 14.524538197158822, 9.451012449854106, 8.4128298036792, 90.07204832357027, 23.117030946334292, 10.054325842372048, 15.648092882705976, 16.35883233863511, 15.257970139689808, 23.04516451706307, 9.202898677071278, 25.431295443071924, 14.7041449260835, 32.828565804254296, 85.8506389747252, 198.13723789218895, 5.61231855361862, 7.6085948482098775, 28.856422759151297, 12.712886653866923, 33.13341222624192, 5.485225153623457, 27.5317820533508, 62.56805791220709, 52.86199121678898, 8.488655552623209, 63.730250993003125, 18.71888552585481, 11.639137322303238, 18.04546396883501, 13.801280716820079, 7.0840915102910715, 52.004769527364964, 14.036713006679472, 35.233308865969185, 67.02728223006554, 9.78928663532022, 38.100408046528145, 11.871058893389465, 32.32860835796474, 32.1930191466617, 94.4222975516343, 16.36743203713019, 7.166018377683926, 77.27202656837213, 14.366325421409247, 10.844526335677847, 10.905503980072313, 123.2749210990286, 11.294870096613725, 90.1159916176116, 6.287012686369917, 42.824036385498474, 12.837208186618229, 5.453299603141808, 81.99419337645998, 10.073322161110514, 18.09909434628121, 5.451490881615714, 16.80356999755217, 11.655061592840859, 20.868962007732147, 46.01231197519607, 43.13349456794508, 9.09628738257305, 21.366203415379093, 121.88528111674754, 79.2184597413041, 59.127566185527726, 39.24664996427075, 19.19020965148727, 70.94306911790154, 23.21292812755245, 21.023506812178596, 7.371935664451613, 108.40541904269057, 14.729625949766712, 11.027460468425868, 11.506531512951083, 28.74415905519662, 34.460955693797395, 15.917725802131812, 12.670260550512339, 28.77576629706444, 13.966516878695666, 7.077779403305187, 103.0735945423025, 100.07470721940736, 6.1291373054105405, 10.051010906735412, 105.53308195758876, 17.13279680672916, 5.408760349528656, 39.78880134887371, 23.55532715240165, 70.00006736021386, 23.25311742387172, 31.540709708910825, 35.334323199360604, 46.44927620754225, 68.05706098734927, 33.945512991134414, 68.46759897033239, 5.582775935453125, 48.23238793446975, 45.2681646343484, 35.819240912164915, 9.010213505343424, 11.184704615180696, 45.50891273769699, 74.00452385541489, 46.41764971133746, 13.639449810671795, 30.78781834050876, 45.32228611949193, 103.44686260989636, 83.62173085153616, 14.92484417901636, 53.39256780124872, 16.27762948663495, 118.04017292451041, 66.1619051149826, 5.241515654536744, 33.37960795807346, 42.99835481533285, 25.061829531940717, 22.06122291298765, 74.86442540751221, 112.30613367183427, 5.786810353418236, 7.493445684733361, 16.495574254375576, 99.75391578635946, 9.174578471452866, 14.021489715343407, 17.937872086311614, 38.05734756307012, 105.77261770181903, 31.388420295688512, 43.68149080931643, 41.514563994628894, 30.44842659654024, 64.0807002614713, 20.93716628438703, 8.325239270221134, 16.23417561963584, 6.052950860091257, 55.80740515827654, 37.62046314286371, 83.16384001578358, 22.855153583415436, 22.092300010326863, 12.120970959745778, 14.014311170265621, 5.626655110588224, 12.185078662630536, 13.258909616714966, 145.9294856905185, 91.62599555526197, 62.5257544535806, 35.574655024166184, 37.93853049641035, 53.90203975582889, 37.160789373289475, 22.88760626352657, 11.660287201399527, 7.91974257374009, 18.904913649328773, 42.17284722928751, 73.03016726860407, 57.779706549860464, 35.09295383190172, 59.56359509990522, 26.093720852587246, 62.16918619406188, 42.207345744833866, 18.031478051801294, 18.934873756696863, 70.87006800190859, 43.943808881690245, 17.170467144750145, 8.558372026873979, 174.6259154481586, 17.845915360494757, 13.043778197180625, 64.92922462513188, 15.262125616962514, 8.421415382415905, 35.076426574850395, 54.14405412806978, 11.331065540178093, 5.985228293677253, 102.96082169248061, 32.8054888847424, 18.133964687475274, 28.056189574678825, 11.727920244325558, 59.139386419720566, 24.35358116207299, 21.72909950823785, 19.473187484258244, 25.084168998390183, 9.625508367154154, 35.01659479254565, 98.52696142359689, 30.678062093845647, 21.07486058646818, 54.648956864684536, 9.331839134587117, 17.60695186247167, 23.683730555811557, 14.78083088230302, 6.943602032000521, 5.87099717029965, 26.389388646883507, 172.22972978097732, 16.466676673511273, 35.18149325530911, 17.359063087944293, 61.75026848307057, 48.43896483097677, 110.20280204187608, 5.4958313143561845, 7.79658931049184, 32.354347064370785, 64.05555278430718, 94.4183036823648, 80.14608291929223, 82.31914694568871, 29.0202243083408, 109.9411764925805, 5.852509162619758, 5.412687541257652, 77.62355734894666, 14.94010278459514, 22.050669360547936, 56.377467315560864, 76.91849656957051, 35.19794479892052, 155.6751724495821, 19.48830376188615, 51.19443869726219, 48.096023321512334, 16.995443956891812, 20.896504438962914, 10.927453416871623, 23.84707210339364, 7.061785624363074, 29.649826165096727, 8.816312854193713, 52.24673951522182, 12.461182984494576, 76.90741919102555, 14.986514900935338, 13.835225578991182, 11.715715872264504, 50.592466231676056, 6.276182263470892, 7.798723185806245, 6.3191813689871585, 72.78553183314048, 7.2097886306841446, 45.508852348697715, 59.966709333073496, 16.370238783568553, 28.64699911648494, 65.28853102242331, 5.331094015436238, 5.5097779736420955, 84.93663582421073, 32.732137803997794, 5.925310919964556, 21.06409283295649, 24.095771880879376, 70.39903344270934, 57.3261552086836, 52.21118176804213, 51.512590629965, 41.02932316533424, 14.71713181576082, 50.42961385763101, 49.017104655402, 51.22277034367748, 21.200621614747945, 28.752061246576275, 69.29523003823488, 5.639419856777944, 16.931692614620832, 5.846050912277335, 63.38717128460091, 20.5819997098765, 31.453176775150773, 32.699077121201064, 28.31363229244048, 9.042079739885057, 15.883337443161716, 41.43281085712728, 17.268207328098615, 5.489586637412598, 109.81232090120577, 30.796107158833276, 32.05101021281577, 30.11497158238541, 40.1823971118392, 59.11034357443527, 12.120821091551276, 17.345192446900793, 31.818023789552036, 57.81857011590241, 53.61655796131748, 121.69767314015608, 70.543299476954, 13.922077509186074, 14.565766634211752, 22.395870788160725, 17.035018412857642, 18.444238625802303, 83.30074348226796, 104.80457124608625, 47.07129408941399, 13.97880516205363, 5.213592750461947, 47.62576400203726, 24.801455949605657, 16.33547688008695, 25.91258250847413, 66.40946946077734, 11.903721326578522, 67.68760275252126, 14.868294168911497, 15.424889334709354, 7.514831154024098, 10.625858969612182, 64.4267465613024, 44.85405748855167, 62.90447172426681, 33.447550335167755, 31.561873669715613, 13.064443182199899, 14.556875502262814, 8.340139648644023, 66.2297351340808, 10.729981498067701, 18.060441918377528, 32.16520833463549, 59.29474566849939, 7.770479304717434, 16.09494293620289, 76.5814583046162, 84.15814639139307, 93.39343814532171, 17.022070057619608, 11.478597047193109, 11.880966811859093, 110.62511566107067, 15.62226455296298, 53.873101245261445, 8.917956326478127, 7.640798615086703, 72.994293606624, 40.745272583782324, 15.066710896886793, 6.1452592033455655, 8.610698472311736, 199.46029667099052, 17.905299646607748, 35.06068529751086, 8.677349246936647, 21.41764269458935, 54.3899361044753, 93.09878165492466, 6.280387196602798, 18.78474419371912, 13.192875890882842, 19.102582597258532, 14.324323029764118, 89.36066674684858, 72.19471871096022, 27.681139519959437, 12.654853394568912, 95.38460184824025, 14.499236629524955, 11.362272157451729, 6.241173786464104, 52.63171351457776, 9.983040003541968, 82.31203180924146, 24.90314064515077, 28.035881831713866, 51.16810409411865, 89.20237207680671, 42.50145944897662, 74.87262358821802, 70.45717899516124, 40.37872353844085, 28.44189119343759, 5.978654906089389, 29.198989072340876, 35.82040818145802, 104.90256300342442, 12.459433174125257, 26.874051458946862, 36.92513204816392, 33.574198675828164, 21.492631002488043, 6.076819378231563, 9.415596026002246, 86.27552982051802, 32.785988546529865, 30.067347582875755, 106.62598883854817, 10.58466438648148, 61.10386503278089, 81.1135806012324, 94.4564429270184, 13.10093039027952, 13.144290147093399, 43.98528918866488, 6.496741199040537, 34.88913749476752, 35.401811415098194, 6.174484890432544, 74.30438322843132, 14.94549160778574, 43.434778491639534, 39.56012765107478, 31.43416976030532, 12.74737570012471, 18.12406081711067, 74.74237753279786, 19.78117013261676, 37.043019307166816, 27.089194487639467, 16.394466259289104, 20.215041121324113, 53.953624548738105, 47.05405267479552, 18.07152160107863, 5.999509999283047, 18.638230785937974, 31.76722671370233, 83.49774469644696, 5.204213039794453, 44.91122369478572, 62.566905089724855, 5.267608911473953, 6.197718706782202, 15.206454261559612, 44.08439836536193, 142.46534786517816, 10.208648331392725, 13.410102718903499, 11.466083784640675, 46.28096375084765, 28.657266648325226, 43.09905346948372, 16.976818814012734, 15.492520002228853, 53.444157741726784, 36.36431251917229, 8.703849543896407, 8.952138496194477, 46.98978944242189, 28.99831888588689, 18.365230990604132, 100.5841573910837, 13.82431786119964, 114.59735330252656, 17.685378520480516, 32.36961979536156, 33.82474301053946, 9.038588825203398, 20.34127850241267, 73.0906696468792, 70.96109584298647, 42.615972906009446, 33.70835137042878, 202.51244282165192, 10.426041523268223, 16.156529094818197, 26.56387814460836, 83.16142428453067, 27.168873078349908, 88.69153978427826, 26.700230476619545, 6.52143287557949, 29.33687569163506, 5.3938570750559, 5.530140136539494, 47.39846077560931, 5.8064486392719425, 73.02983825839229, 52.461250610218784, 6.302057927698745, 27.551923326948298, 53.098668411602674, 63.67029616086864, 48.37052645657395, 11.36282333591947, 26.3184980381794, 18.94157627163565, 13.694447654006094, 88.54240268408894, 19.150179678186532, 75.98247987559776, 14.49084019971574, 11.976523653712178, 104.61101951029988, 12.303538931955247, 26.693661907874763, 12.16127739099705, 51.01628572673128, 5.738628746287874, 32.48336185743737, 6.393694441193501, 13.691719081522734, 18.5084376993349, 41.78016412973155, 21.910728010739643, 50.371343273297825, 14.380740765541457, 59.95214237802037, 13.798056466745408, 11.063969711410266, 26.221537793677214, 98.45515827777857, 5.2943867657640595, 40.36792777189758, 9.72579998960363, 87.94033922589536, 86.54616907430761, 57.23219061901627, 68.42446020516772, 5.77714465839727, 22.978979548352882, 88.34232084262977, 66.23968296370246, 8.14749194815142, 72.68326421739903, 6.8318245072706825, 28.13488138760826, 77.21826757958753, 6.486890225119882, 47.09005053628705, 9.456891373432718, 42.79047919350294, 5.169569273843563, 47.98881802104234, 90.94998223926443, 54.542945684263394, 141.2350483517288, 5.154278005148703, 45.52359451811644, 23.465399537453123, 17.162579962180693, 50.43416852288744, 7.191760577227865, 19.047919482094173, 83.68883087512778, 14.5038731811327, 7.218433548035261, 13.077008378598851, 38.38318970914781, 10.60386302906241, 26.098127821480787, 49.29125832286602, 33.75655340671393, 79.25123283728698, 12.946476062661507, 6.7901604319472435, 6.342732134367457, 103.41330949995029, 7.506522770108909, 95.78610379805374, 22.722879055844142, 28.628558224965246, 5.376324026253552, 20.98128100776367, 8.991136532414703, 40.77816079094108, 8.643034589369584, 59.17063811879994, 37.595939134930326, 15.256818846245974, 65.1318864583423, 97.10138088285193, 43.71240764943204, 57.932842876516816, 6.120548229564612, 23.608789432470722, 17.2748881816852, 31.873411433655654, 26.64695208861525, 13.391852915504659, 83.69149709381426, 53.40697912643449, 13.993300759765706, 109.3724345994087, 35.84186917962367, 11.676107276371154, 6.94625399938961, 13.23226687623396, 14.994945682939248, 7.139494049881809, 17.95456285054733, 62.63174907103709, 8.57227372956741, 56.10233654988802, 94.50288278224338, 74.91111531279618, 97.35653668122919, 44.185138138530704, 55.0078535388649, 52.666576623543044, 12.511998268620076, 80.68038444339871, 9.308964775312422, 11.716043193169584, 6.006763193347043, 51.20292513395372, 19.247281641992533, 24.424694603424243, 6.214180514107087, 20.443948472893844, 28.187516485020762, 15.94665136173592, 84.72312729148896, 5.515692339814456, 20.361548379422967, 64.03753695967754, 51.700636469726334, 43.90019073499236, 31.28553383368027, 22.176893530799006, 35.42427060621388, 118.09832606048539, 24.50680742623219, 10.830615140429703, 69.81552734719398, 57.31678158556897, 15.946871296177267, 106.59543406540786, 13.387801930384567, 21.365278786109737, 16.08863495287302, 17.314587563126416, 18.45470565001418, 10.347442272754014, 41.917750360133, 25.63291114333439, 12.143032367734953, 35.169199286677404, 13.399650289321277, 9.484800552554635, 5.987132981115714, 115.47573228368927, 100.68432624420385, 60.15078880814619, 13.151113168642256, 53.92937329424443, 17.537276041109063, 32.61592988097948, 67.18901392413254, 8.678590412957703, 14.987326290243665, 7.725476148306347, 61.138993887857794, 9.741160470311588, 47.45745792834277, 25.73702458419373, 29.147509187670614, 13.86770623574249, 32.91073797621834, 87.82081903142884, 6.9713370422036265, 22.987844099379352, 46.57653214759695, 32.8579237165963, 46.68779379193506, 7.911712718204638, 5.109591714108577, 6.999027929848991, 48.19940772151752, 17.044257953519516, 7.204752447529972, 40.05835487354582, 32.49302081768092, 56.68390988969162, 9.908471901048479, 82.80963063358317, 58.80176381207245, 105.70598665836613, 39.04252372076326, 42.51313482341425, 13.48317728945169, 78.97657804668088, 12.923473833997766, 5.880280198618075, 42.314227146126115, 9.638440829471847, 28.32249457583684, 19.422708680436365, 16.812317340402764, 29.234356635376248, 20.083167050479908, 40.157606171533885, 36.936711698516, 37.87809579534052, 5.210897973959334, 16.14360862944445, 96.3328343308068, 35.1980332379694, 29.509029676561916, 52.17600418094795, 38.440916737342164, 8.761154742459585, 50.00611552956412, 83.74782966072893, 13.575946279443786, 14.003305598340745, 14.022125005334734, 88.23531511029722, 14.823946841298689, 11.508532111638646, 59.62738166623078, 7.2624593518539164, 67.59388118322661, 41.21519870247705, 25.391148013679143, 82.89597480612656, 46.59171937611694, 25.07958516955071, 31.421305727134907, 57.692562661890925, 7.5513890724326, ...])
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);
([3349603.125, 3388006.9179713405, 3515132.8125, 3532152.325695915, 3552306.604462735, 3569092.0990390508, 3569121.6944811414, 3573500.0, 3609678.5012510098, 3609827.590185809, 3610165.625, 3610637.4340361743, 3610657.7266972917, 3612741.836583727, 3613701.17264504, 3616485.9375, 3628410.9375, 3676091.5778285568, 3676235.0357745183, 3706501.5625, 3712115.625, 3712904.6875, 3712960.0000436725, 3717393.75, 3759085.8998718224, 3761291.7475132598, 3861131.8697533505, 3888365.625, 3895137.9374820804, 3896074.1603733464, 3901807.3995302, 3902062.0703444774, 3902137.6156597137, 3902200.175733591, 3903219.2340952912, 3903249.853472672, 3906226.5625, 3911815.404952341, 3927621.1448229165, 3930216.5360643463, 3932011.57179401, 3956395.1896947604, 3961193.3565983684, 4006416.8255020482, 4006765.625, 4018259.353527529, 4028376.5625, 4029398.328923603, 4032059.866880671, 4033109.350710748, 4033413.915327969, 4033818.75, 4037172.5813330766, 4038959.244227836, 4039939.297117285, 4040421.173823995, 4076962.3974583335, 4089563.4581262534, 4125902.5342965117, 4136937.5, 4145527.235326591, 4155440.625, 4156419.267935888, 4157234.0189061095, 4172250.569632171, 4180030.618176705, 4192030.264033581, 4193089.374134874, 4197046.875, 4200958.847173213, 4201932.8125, 4212981.221748934, 4220955.275045098, 4230145.3125, 4231289.555675966, 4235387.253459165, 4235664.137804713, 4238206.6459559975, 4247428.125, 4250934.375, 4253094.58204537, 4258468.986521713, 4262245.777549541, 4262401.470986049, 4263106.25, 4263429.620111995, 4264551.5625, 4264579.548753741, 4266698.4375, 4267016.089663964, 4267575.0, 4270096.470588429, 4272615.084765284, 4275235.9375, 4279801.5625, 4280271.698016132, 4280799.869029021, 4281808.728095687, 4282355.552730924, 4282493.75, 4291001.502976331, 4291752.1377874445, 4291866.97663816, 4291879.6875, 4292089.0625, 4292229.09367697, 4292306.807807689, 4292312.40307498, 4292387.581586618, 4292408.485521385, 4292512.19016451, 4292526.393127995, 4292756.25, 4292770.730495202, 4292935.9375, 4293107.678463159, 4293169.362695906, 4293231.967091775, 4293245.15168337, 4293254.6875, 4293271.759693483, 4293281.25, 4293287.933483513, 4293372.2196295, 4293423.790823424, 4293431.369553578, 4293459.198440699, 4293482.8125, 4293499.105313412, 4293523.239915421, 4293526.375249078, 4293593.728489595, 4293628.575200159, 4293633.398194326, 4293700.454950503, 4293737.5, 4293750.82711785, 4293754.6875, 4293764.614138566, 4293780.871149602, 4293795.086162438, 4293834.975512, 4293880.380153141, 4293928.125, 4293952.307947142, 4294037.5, 4294088.421323952, 4294102.87735914, 4294113.944476296, 4294164.0625, 4294228.125, 4294231.160214081, 4294242.1020528665, 4294242.790273796, 4294246.735472072, 4294282.8125, 4294364.0625, 4294382.0024812715, 4294431.91817506, 4294443.4319056645, 4294578.529298434, 4294593.919246863, 4294594.373449002, 4294764.526685774, 4294850.9736207845, 4294852.941875088, 4294872.438838899, 4294914.0625, 4294914.222116114, 4294940.00586236, 4295019.071506454, 4295023.4375, 4295037.5, 4295052.547059558, 4295086.690406952, 4295140.924253423, 4295240.625, 4295257.8125, 4295291.649327289, 4295297.867617387, 4295384.1558449995, 4295414.0625, 4295454.798111579, 4295470.3125, 4295478.000850144, 4295503.750159481, 4295524.113119951, 4295542.1875, 4295598.601243634, 4295601.5625, 4295619.061442837, 4295684.599264566, 4295739.438726819, 4295770.3125, 4295771.61949786, 4295846.505280076, 4295846.543573225, 4295859.231616385, 4295964.963228453, 4296018.75, 4296160.9375, 4296163.538331332, 4296175.948196043, 4296216.8322860105, 4296273.132294893, 4296310.826782606, 4296370.3125, 4296396.875, 4296587.5, 4296632.8125, 4296648.924101832, 4296677.930194461, 4296906.25, 4297076.5625, 4297100.456817354, 4297121.875, 4297200.927144853, 4297222.665386573, 4297292.168611572, 4297395.3125, 4297405.066191382, 4297418.75, 4297532.8125, 4297537.5, 4297538.48172343, 4297639.119684267, 4297650.672961539, 4297666.8101546755, 4297689.46179226, 4297736.3331181025, 4297749.714743985, 4297905.014924454, 4297945.729651496, 4298092.618768286, 4298153.125, 4298230.447644354, 4298261.434209402, 4298290.090082035, 4298344.586991392, 4298834.375, 4298838.892140347, 4299065.257649091, 4299237.716921762, 4299295.36455081, 4299312.445934053, 4299376.91451427, 4299718.75, 4300133.094374624, 4300417.826577645, 4301108.568111653, 4302014.853379618, 4302144.239093733, 4302259.194326042, 4302392.1875, 4302634.772652695, 4303372.681855658, 4303518.185984753, 4303556.25, 4303806.582414765, 4304040.360375622, 4304304.028670737, 4304618.084476424, 4304717.620357236, 4307659.964270777, 4307955.403341551, 4308567.073625404, 4309842.325648234, 4312011.16885103, 4315062.299791714, 4316129.336215077, 4317363.246872921, 4317368.923800707, 4317610.989579629, 4328979.768121408, 4330265.2676797295, 4334879.531510688, 4334901.568604657, 4336113.998798882, 4336140.262508217, 4339690.552317383, 4340747.831007451, 4343685.906266351, 4344764.077287522, 4344924.609492395, 4346120.338852586, 4347965.625, 4348178.6603916185, 4350195.260252881, 4350231.856357084, 4356085.9375, 4356376.926035629, 4359111.122221728, 4359453.855755549, 4359495.616782908, 4360162.591348262, 4368727.789808999, 4372034.230943292, 4372223.4375, 4372943.490474121, 4374337.5, 4374489.202447415, 4374506.746045831, 4374852.766278635, 4375262.9286547145, 4375834.398062111, 4376566.401364444, 4376834.375, 4376923.767268216, 4377089.229369045, 4377925.735638842, 4378342.027939764, 4378923.248446914, 4379052.978032976, 4379207.8125, 4379475.104376731, 4379579.680645802, 4380072.030236788, 4381571.040022619, 4381778.998747617, 4383315.426237228, 4385065.625, 4386592.951460532, 4387217.82586253, 4391820.070885913, 4392154.832147498, 4392194.063074595, 4392264.909511118, 4392458.9679746255, 4392464.0625, 4392491.895704758, 4392582.299684406, 4392721.875, 4392731.155818217, 4392731.197212729, 4392917.1875, 4392941.420855266, 4392951.727774021, 4392975.378888151, 4393052.576600755, 4393068.061754433, 4393131.957538199, 4393165.568276592, 4393228.05990464, 4393236.749713754, 4393251.15767543, 4393254.6875, 4393290.859532755, 4393435.179212501, 4393508.695301475, 4393527.843301019, 4393540.456216754, 4393554.276235914, 4393609.375, 4393641.0105969105, 4393680.431379421, 4393744.601010163, 4393766.10146105, 4393789.3289897535, 4393838.9033384845, 4393844.997046157, 4393866.352285669, 4393882.472517993, 4393957.4358550375, 4394018.75, 4394020.3125, 4394035.20238725, 4394136.386399675, 4394271.875, 4394279.108121155, 4394317.1875, 4394356.437184626, 4394381.25, 4394435.531540005, 4394468.786161933, 4394497.775504251, 4394742.1875, 4394798.4375, 4394816.902143234, 4395112.601532506, 4395267.1875, 4395359.114859876, 4395459.369145446, 4395587.495620796, 4395819.045048405, 4396211.248823681, 4396580.6205315925, 4397023.4375, 4397246.744794198, 4397439.046177186, 4398698.4375, 4398741.983647311, 4398866.742626177, 4399326.5625, 4399368.75, 4399380.875917995, 4399429.373384568, 4399444.62328949, 4399501.529921934, 4399818.558518994, 4399957.477318961, 4399965.97689509, 4400035.9375, 4400078.008128818, 4400093.952922178, 4400148.940285405, 4400289.0625, 4400300.0, 4400338.326175752, 4400352.567403952, 4400567.2599016735, 4400662.174652151, 4400663.717585692, 4400700.0, 4400776.187586721, 4400804.6875, 4401049.626496946, 4401124.558039893, 4401148.991878976, 4401345.045932918, 4401415.85072616, 4401461.522839563, 4401511.975302157, 4401740.535496455, 4401896.357465362, 4402590.625, 4403613.463869967, 4404165.599305989, 4404170.3125, 4404407.803645173, 4404586.127644324, 4405697.190951289, 4406482.047796032, 4408999.194453096, 4414531.129495677, 4415390.290353167, 4415631.25, 4417351.5625, 4417564.0625, 4417675.60877336, 4418076.5625, 4418716.985049043, 4420350.43648627, 4422332.011109827, 4422489.0625, 4422801.5625, 4425192.6707293345, 4425200.480880539, 4426443.75, 4426455.439686441, 4427346.268595045, 4428107.789108755, 4430225.698110998, 4432917.434064352, 4434098.135981241, 4435344.639427037, 4435765.75132009, 4436723.949055312, 4436877.26912033, 4439960.9375, 4441108.456281059, 4441973.413377602, 4442569.102816232, 4445409.969201795, 4445645.295383188, 4448369.815151898, 4449155.520492718, 4449418.857732832, 4451705.01598345, 4452503.125, 4452518.75, 4452622.544799288, 4452882.977898041, 4452926.5625, 4453306.250515545, 4453325.558851104, 4453432.507235774, 4453861.261675847, 4454197.714778492, 4454247.616957512, 4454468.631853952, 4454505.598408363, 4454590.974834383, 4454607.8125, 4454672.39152589, 4454696.875, 4454868.75, 4454919.425583074, 4455150.770342245, 4455180.192216685, 4455304.6875, 4455342.1875, 4455431.320035342, 4455526.5625, 4455612.5, 4456061.3923286395, 4456204.671082415, 4456291.132488056, 4456483.179388731, 4456570.3125, 4456699.999630903, 4456772.313547874, 4456846.537038616, 4456935.9375, 4456973.225359773, 4457041.420107371, 4457058.647437519, 4457217.1875, 4457525.654023677, 4457639.141474959, 4457718.1880395245, 4457882.680491619, 4457896.582504127, 4457910.705551239, 4457937.680788426, 4458089.945785745, 4458596.875, 4458760.088099629, 4458779.6875, 4458850.011757818, 4459149.675949881, 4462523.783713927, 4462879.6875, 4462928.1957779955, 4463398.947472366, 4463923.838157372, 4468957.068683129, 4490445.638217554, 4494798.4375, 4500014.787656805, 4501559.705340257, 4502576.5625, 4502595.39101977, 4502602.805574941, 4502622.94782788, 4503807.8125, 4507778.125, 4507912.336717406, 4507918.205891086, 4508290.228859498, 4508522.034971145, 4508618.75, 4508823.145688832, 4509137.5, 4509203.082031066, 4509267.127359484, 4509784.793127152, 4510520.233635375, 4510994.349847331, 4511651.032671909, 4511802.724559965, 4511804.6875, 4511902.012255335, 4511997.887909892, 4512000.424229514, 4518475.0, 4518686.903544242, 4518755.365454366, 4520351.461036449, 4524034.099361658, 4524377.761792918, 4537742.337577185, 4537757.898769646, 4538022.375606569, 4538614.6950316075, 4539146.310571689, 4539220.3125, 4539223.247980675, 4539732.046858185, 4540265.880756883, 4540293.75, 4540909.9293060005, 4541184.8891099235, 4541309.375, 4541319.138050328, 4541501.5625, 4541865.00626877, 4541876.858719063, 4541885.641595924, 4541973.391138069, 4542093.335974573, 4542220.771205679, 4542252.2533152355, 4542256.887617634, 4542320.00480765, 4542324.737676953, 4542334.097205874, 4542342.582088046, 4542359.375, 4542460.715533408, 4542483.135736591, 4542565.477285309, 4542664.0625, 4542709.820558068, 4542762.5, 4542877.301988225, 4542928.2462919215, 4542940.373770289, 4542984.012542799, 4543243.75, 4543539.7710017385, 4543551.360892056, 4543889.0625, 4543923.667157886, 4543932.214118497, 4543996.770289057, 4543996.974932103, 4544002.857377847, 4544334.104719045, 4544453.157365748, 4544482.8125, 4544615.625, 4544919.1898794975, 4546089.33543219, 4546104.277934953, 4546151.042401531, 4546312.160005572, 4546527.018833891, 4546565.583400592, 4546567.621297692, 4546750.0, 4546881.417830838, 4547656.25, 4548418.216911066, 4553475.102669985, 4557437.211258207, 4557438.723620348, 4585893.782464803, 4593389.594792656, 4600616.191440261, 4610823.4375, 4619608.420241136, 4620023.4375, 4623814.734934932, 4626194.804902323, 4627023.4375, 4629456.2947331285, 4631782.9161810465, 4635567.927607283, 4644863.294315538, 4646044.534066635, 4652374.828067995, 4655159.375, 4657811.133787307, 4660766.171895617, 4661377.360154614, 4662701.5625, 4662856.1289148545, 4663356.395057495, 4663635.72870179, 4669493.322138012, 4669513.181724483, 4671676.226524035, 4676321.660162083, 4676896.936535621, 4682949.313958683, 4683050.769622635, 4684143.75, 4686407.8125, 4690365.625, 4691340.748117483, 4692109.370782333, 4694533.252425288, 4696939.0625, 4696948.36787177, 4697019.959651466, 4697978.837317296, 4700840.53562762, 4702871.520665789, 4703226.51742353, 4703256.408489074, 4704796.76582784, 4709286.03542046, 4714040.625, 4718232.987314507, 4724435.484123534, 4725734.375, 4734613.684883683, 4749650.0, 4751018.9019265985, 4751440.625, 4751608.790692756, 4753193.182266352, 4761495.219776822, 4762301.623784385, 4763801.587462043, 4764921.263431988, 4775894.541661191, 4778839.466892878, 4779746.876044381, 4780037.5, 4780850.0, 4781528.125, 4781963.336674663, 4782266.267244875, 4782619.987429313, 4782667.090722522, 4783876.551587173, 4784170.639343043, 4784494.08526697, 4784741.54906841, 4785237.800593195, 4785265.625, 4788047.509058501, 4788110.040231152, 4788663.219185492, 4789277.918614785, 4789810.9375, 4789875.031024155, 4790582.673953647, 4791149.43761868, 4791416.408256403, 4791543.1795425275, 4791779.755317128, 4794003.125, 4796814.021489231, 4797366.507490411, 4798263.592907142, 4802167.393708761, 4806790.625, 4806795.3125, 4807595.180059251, 4807595.760506927, 4809109.512423949, 4834086.897770904, 4843307.192529594, 4843831.96367948, 4844605.764606196, 4846170.3125, 4847467.1875, 4856367.866535968, 4862680.573718622, 4870644.984878603, 4872076.588441143, 4872827.134414552, 4876501.5625, 4878608.624194962, 4879815.257137641, 4883232.322387998, 4884354.6875, 4887369.784719101, 4889019.455417721, 4890611.727718087, 4902644.370094949, 4903043.249372596, 4906971.756370608, 4907035.829857675, 4910068.91637724, 4913567.115033172, 4913567.590428766, 4913900.415989399, 4923661.153130135, 4926407.96103865, 4926828.003701806, 4934535.876765283, 4970123.073031608, 4985934.2726879865, 5015020.3125, 5017442.1875, 5020028.3960195, 5020574.948856548, 5021373.4375, 5021695.18952705, 5021744.949343335, 5021842.332886944, 5021914.700022749, 5022275.762037414, 5022318.134321979, 5022456.25, 5022875.790487262, 5022945.44252171, 5022998.314014063, 5023581.7327144, 5023735.9375, 5024069.391238557, 5024127.222364709, 5024850.573904034, 5025282.8125, 5025292.676894525, 5025872.560792971, 5025891.5646527, 5026076.190798705, 5026223.108034395, 5026434.375, 5026540.165870344, 5026555.892562912, 5026658.826995563, 5026773.4375, 5026788.726246626, 5026828.083836667, 5026898.309091801, 5026999.335166315, 5027050.106449302, 5027054.6875, 5027056.682301039, 5027257.8125, 5027326.5625, 5027360.340703733, 5028735.9375, 5270016.676935933, 5455335.574580352, 5455960.280766103, 5456660.9375, 5574438.789888989, 5633959.375, 5636048.770333345, 5678990.8159693675, 5680042.1875, 5680171.873717619, 5680505.8134120945, 5680926.7072719615, 5681131.25, 5681398.6172577385, 5681525.5722080795, 5682481.080883226, 5683287.428040687, 5683303.96988977, 5683651.080143212, 5683792.0247369185, 5684083.0384315355, 5684887.537113311, 5684984.375, 5685003.38588101, 5685387.731844207, 5685399.044068641, 5685415.505238885, 5685458.169020612, 5685643.156478552, 5685690.840577503, 5685755.8868497005, 5685791.606823396, 5685964.0625, 5686106.25, 5686122.974211354, 5686144.667798608, 5686151.694557923, 5686234.950340546, 5686276.5625, 5686388.786939588, 5686505.260247993, 5686509.861902628, 5686643.75, 5686722.845756725, 5686845.50982209, 5686883.943165522, 5686948.4375, 5687005.305774098, 5687043.75, 5687197.347673229, 5687251.6428365735, 5687332.8125, 5687393.084433948, 5687461.737981159, 5687826.5625, 5687834.681361092, 5687874.688805222, 5688115.477296291, 5688165.40175966, 5688400.87618491, 5688455.773853331, 5688493.28019696, 5688608.285125244, 5688702.851799372, 5688715.430182079, 5688742.1875, 5688744.074635257, 5688757.10127863, 5689179.152897622, 5689184.388949343, 5689206.318194509, 5689472.490607801, 5690468.75, 5690850.5038176095, 5691625.0, 5691638.827152013, 5691755.374875968, 5691944.143920382, 5699064.202468631, 5699357.8125, 5699581.662615844, 5699706.985672839, 5699712.204680625, 5699917.1608434105, 5700126.908891285, 5700550.742271707, 5700787.885690887, 5700978.928458758, 5701496.201167037, 5701579.256017011, 5701621.652211654, 5702259.311746205, 5702309.615880402, 5702659.375, 5702773.073942794, 5702847.816057693, 5702851.335299854, 5702859.375, 5703006.425347398, 5703064.0625, 5703081.797681939, 5703108.61335271, 5703129.6875, 5703176.31947099, 5703176.36373485, 5703287.5, 5703442.1875, 5703618.990928545, 5704027.700259963, 5704029.209894969, 5704253.428149796, 5704386.900693973, 5704852.413258163, 5705317.879865877, 5705413.498513869, 5705538.7771688495, 5705716.3933764575, 5705722.44009084, 5705785.9375, 5706324.526656728, 5706329.863510602, 5706755.219704042, 5706851.5625, 5707017.1875, 5707034.596607556, 5707071.309859498, 5707110.823454784, 5707598.984615067, 5707958.059656566, 5708364.448338272, 5708542.861877895, 5708685.949468884, 5708876.888281335, 5708890.289864516, 5709795.760361309, 5711101.5625, 5711443.368677594, 5712027.11666832, 5712505.93653591, 5713099.518532909, 5713177.685786741, 5713271.2714052135, 5713518.3878326155, 5713771.296327548, 5714473.158408921, 5714796.875, 5714800.779301944, 5715023.995128366, 5715060.450366614, 5715069.705148933, 5715134.835395156, 5715144.057687336, 5715189.0625, 5715389.676126859, 5715707.8125, 5715983.424292539, 5716143.399407603, 5716445.3125, 5716752.610055346, 5716970.3125, 5717447.378005357, 5717462.05638744, 5717480.794467939, 5717836.846118493, 5718324.295069485, 5718385.9375, 5718455.029591153, 5718739.052189095, 5718914.703758372, 5719147.367267463, 5719400.664931816, 5719436.665905795, 5719879.908731915, 5719974.4994583465, 5720110.9375, 5720226.853435137, 5720251.664806467, 5720273.4214976905, 5720392.1875, 5720710.367624833, 5720973.4375, 5721293.749539307, 5721832.051178943, 5723279.6875, 5723658.638300434, 5745052.7137777135, 5745960.667461762, 5746518.4858926125, 5746744.905230233, 5747117.383673134, 5747322.105703454, 5747585.5111729065, 5748109.885567016, 5748178.810728541, 5748179.6875, 5748300.697106363, 5748335.9375, 5748407.710228114, 5748820.672139784, 5749066.237885893, 5749089.0625, 5749117.04183436, ...], [53.183235058693555, 49.435087244547404, 63.390140181770995, 8.736095213443573, 8.483360971184704, 14.614727189041249, 10.856799728945697, 63.612501988952445, 56.00298603103802, 54.14775225505602, 53.81461257887599, 27.284345693816547, 23.180938031991957, 20.62909984187653, 10.886160641315826, 87.33798404306566, 45.91184021235592, 5.375667353321436, 18.244479433523413, 91.34587166662206, 31.013045867575986, 70.75270622177278, 5.2629823444560495, 36.33151238924992, 21.966480450473792, 14.650388935698048, 12.617506554124208, 55.32929149241297, 16.92008343242165, 18.663840387924807, 22.40754612538119, 22.22474893750396, 5.248393942511937, 15.656480760906973, 30.864094733336607, 6.248861511033665, 46.20737136007426, 14.164260420237168, 32.491016348813154, 20.104697836965265, 15.242506917237492, 26.312863488613843, 55.85476538494409, 104.18036352377602, 74.86577047406826, 18.385569972004095, 129.1023137398162, 97.2418793948122, 48.162304373093875, 65.96730910449315, 34.35543682819606, 107.80483393317422, 7.320387683721595, 26.183233532910897, 17.13108441510716, 10.184016247097196, 49.216869632306725, 17.600605878423988, 29.623000753225508, 46.48230331737984, 8.677599382106726, 76.11640281466919, 8.580876147423474, 7.479329572369999, 17.671609445190544, 42.99028273252624, 47.4204491887301, 5.137218737260853, 41.46896772248614, 5.67396945622937, 30.533211138058775, 38.30273387832139, 9.883074689521061, 41.01590947498075, 60.64019025447668, 161.01746927531514, 11.24748895574762, 74.14275020744412, 61.03651959944655, 58.005557334232456, 7.358811611117798, 57.58135851412555, 17.069781868999993, 26.837246319146782, 75.4515829523117, 42.554018035435526, 96.30614036346451, 9.2167775863302, 30.390695147444475, 5.215424018610528, 58.34755512901265, 121.83093531930868, 33.631203583526926, 55.694983816192554, 36.92106386983924, 25.460485703708983, 26.180018170667555, 161.99879022446822, 69.29899157512705, 40.83172441118514, 11.035924868407212, 7.825463252309766, 127.43453222764754, 30.881515227924858, 64.21351837614809, 13.076227617166506, 89.59302286950064, 97.81953015378554, 32.1532107766682, 19.704815771680018, 102.50532977095011, 25.576226965978684, 31.746930360517272, 16.8163705805642, 40.613998712580035, 35.45227999409188, 17.936286127928327, 8.706056497272119, 14.36204382809044, 44.98080145657793, 33.49142230339065, 59.67156102728505, 6.323564705951607, 16.440777065656075, 63.22868160682563, 5.2064785176775, 54.61126722536171, 28.885670250368207, 12.361119093297495, 71.062026088669, 34.650521542675435, 37.38290707697101, 5.8480595070587515, 7.829762036307072, 5.555575783805088, 64.60345209488477, 7.9325478569359795, 84.07718583761122, 17.564044823845236, 13.49275779566511, 9.14708406323712, 131.02476019580251, 27.097434811837946, 32.13954963943961, 8.724482405265961, 74.73674944620302, 7.9743156553762296, 55.20403068743168, 50.19677157903744, 60.43894706104277, 82.57850202388352, 7.098048003945971, 14.62552876244838, 17.874375964431707, 5.803728024645182, 109.16938350163633, 51.06549814021306, 18.872819469534587, 22.09420702132246, 10.664422549400824, 20.102641178561875, 6.513953527402852, 9.920764053204053, 17.065037364123437, 10.317113698392408, 28.358820932711314, 92.82834239659059, 30.67143325063221, 28.210225376965283, 13.01118434314616, 26.88886928776893, 92.40215563674165, 73.01066049477208, 13.117536593569197, 12.551224488691956, 20.189951931212264, 57.75084001358918, 71.60241937399734, 13.222701817600242, 8.891930973059676, 30.751042530000532, 62.33309464040415, 15.38056323413899, 78.17743636756654, 26.29087741330904, 18.014861051849, 84.0157588705093, 81.4692295459112, 68.64607886746809, 104.09311579595266, 16.278205329477228, 18.070375859059276, 16.599730578105497, 68.75582426916186, 30.618734387813298, 31.92552442283381, 23.357440482723643, 10.910748739444319, 6.957719025794485, 110.20408615181546, 30.20493995535867, 39.282358107438014, 7.395203128444024, 5.446724144488483, 32.98940804296818, 32.579752417661204, 43.63644953917341, 77.08904543611469, 58.43292398798458, 47.14618333702397, 110.4460997946766, 59.45543188078309, 71.16560601774651, 84.75533028896322, 15.351282644502898, 34.53339611449047, 12.970021500232564, 72.5438562047246, 41.88723784271435, 47.319094959300116, 6.316258992144139, 110.72425783435622, 33.39884696442159, 76.37900335102294, 59.10579472950092, 5.818223563310674, 6.000234953276837, 73.98749930717828, 15.7344468119637, 11.808029327835884, 23.940920524990517, 37.74717452139531, 16.811918810921437, 96.66660379330939, 46.540821341105314, 10.0690687725869, 16.015126742468592, 20.947883559883156, 8.785045090533783, 63.07769838286528, 104.26275004978814, 22.9269327916122, 15.83822382502655, 22.39977386862497, 15.063595309133131, 16.477556789289963, 79.54901981935566, 179.1351264318073, 18.103686293549888, 25.266440955862866, 19.153098225061694, 9.782290117514227, 31.147233870907193, 87.85318595650118, 31.251214498091795, 98.36973346276591, 78.51098937880816, 31.72684250569379, 7.7280602196092785, 30.1636196942489, 12.91112734677823, 19.986875409274628, 112.89005118829024, 22.618930168188257, 18.61508844656394, 14.524538197158822, 9.451012449854106, 8.4128298036792, 90.07204832357027, 23.117030946334292, 10.054325842372048, 15.648092882705976, 16.35883233863511, 15.257970139689808, 23.04516451706307, 9.202898677071278, 25.431295443071924, 14.7041449260835, 32.828565804254296, 85.8506389747252, 198.13723789218895, 5.61231855361862, 7.6085948482098775, 28.856422759151297, 12.712886653866923, 33.13341222624192, 5.485225153623457, 27.5317820533508, 62.56805791220709, 52.86199121678898, 8.488655552623209, 63.730250993003125, 18.71888552585481, 11.639137322303238, 18.04546396883501, 13.801280716820079, 7.0840915102910715, 52.004769527364964, 14.036713006679472, 35.233308865969185, 67.02728223006554, 9.78928663532022, 38.100408046528145, 11.871058893389465, 32.32860835796474, 32.1930191466617, 94.4222975516343, 16.36743203713019, 7.166018377683926, 77.27202656837213, 14.366325421409247, 10.844526335677847, 10.905503980072313, 123.2749210990286, 11.294870096613725, 90.1159916176116, 6.287012686369917, 42.824036385498474, 12.837208186618229, 5.453299603141808, 81.99419337645998, 10.073322161110514, 18.09909434628121, 5.451490881615714, 16.80356999755217, 11.655061592840859, 20.868962007732147, 46.01231197519607, 43.13349456794508, 9.09628738257305, 21.366203415379093, 121.88528111674754, 79.2184597413041, 59.127566185527726, 39.24664996427075, 19.19020965148727, 70.94306911790154, 23.21292812755245, 21.023506812178596, 7.371935664451613, 108.40541904269057, 14.729625949766712, 11.027460468425868, 11.506531512951083, 28.74415905519662, 34.460955693797395, 15.917725802131812, 12.670260550512339, 28.77576629706444, 13.966516878695666, 7.077779403305187, 103.0735945423025, 100.07470721940736, 6.1291373054105405, 10.051010906735412, 105.53308195758876, 17.13279680672916, 5.408760349528656, 39.78880134887371, 23.55532715240165, 70.00006736021386, 23.25311742387172, 31.540709708910825, 35.334323199360604, 46.44927620754225, 68.05706098734927, 33.945512991134414, 68.46759897033239, 5.582775935453125, 48.23238793446975, 45.2681646343484, 35.819240912164915, 9.010213505343424, 11.184704615180696, 45.50891273769699, 74.00452385541489, 46.41764971133746, 13.639449810671795, 30.78781834050876, 45.32228611949193, 103.44686260989636, 83.62173085153616, 14.92484417901636, 53.39256780124872, 16.27762948663495, 118.04017292451041, 66.1619051149826, 5.241515654536744, 33.37960795807346, 42.99835481533285, 25.061829531940717, 22.06122291298765, 74.86442540751221, 112.30613367183427, 5.786810353418236, 7.493445684733361, 16.495574254375576, 99.75391578635946, 9.174578471452866, 14.021489715343407, 17.937872086311614, 38.05734756307012, 105.77261770181903, 31.388420295688512, 43.68149080931643, 41.514563994628894, 30.44842659654024, 64.0807002614713, 20.93716628438703, 8.325239270221134, 16.23417561963584, 6.052950860091257, 55.80740515827654, 37.62046314286371, 83.16384001578358, 22.855153583415436, 22.092300010326863, 12.120970959745778, 14.014311170265621, 5.626655110588224, 12.185078662630536, 13.258909616714966, 145.9294856905185, 91.62599555526197, 62.5257544535806, 35.574655024166184, 37.93853049641035, 53.90203975582889, 37.160789373289475, 22.88760626352657, 11.660287201399527, 7.91974257374009, 18.904913649328773, 42.17284722928751, 73.03016726860407, 57.779706549860464, 35.09295383190172, 59.56359509990522, 26.093720852587246, 62.16918619406188, 42.207345744833866, 18.031478051801294, 18.934873756696863, 70.87006800190859, 43.943808881690245, 17.170467144750145, 8.558372026873979, 174.6259154481586, 17.845915360494757, 13.043778197180625, 64.92922462513188, 15.262125616962514, 8.421415382415905, 35.076426574850395, 54.14405412806978, 11.331065540178093, 5.985228293677253, 102.96082169248061, 32.8054888847424, 18.133964687475274, 28.056189574678825, 11.727920244325558, 59.139386419720566, 24.35358116207299, 21.72909950823785, 19.473187484258244, 25.084168998390183, 9.625508367154154, 35.01659479254565, 98.52696142359689, 30.678062093845647, 21.07486058646818, 54.648956864684536, 9.331839134587117, 17.60695186247167, 23.683730555811557, 14.78083088230302, 6.943602032000521, 5.87099717029965, 26.389388646883507, 172.22972978097732, 16.466676673511273, 35.18149325530911, 17.359063087944293, 61.75026848307057, 48.43896483097677, 110.20280204187608, 5.4958313143561845, 7.79658931049184, 32.354347064370785, 64.05555278430718, 94.4183036823648, 80.14608291929223, 82.31914694568871, 29.0202243083408, 109.9411764925805, 5.852509162619758, 5.412687541257652, 77.62355734894666, 14.94010278459514, 22.050669360547936, 56.377467315560864, 76.91849656957051, 35.19794479892052, 155.6751724495821, 19.48830376188615, 51.19443869726219, 48.096023321512334, 16.995443956891812, 20.896504438962914, 10.927453416871623, 23.84707210339364, 7.061785624363074, 29.649826165096727, 8.816312854193713, 52.24673951522182, 12.461182984494576, 76.90741919102555, 14.986514900935338, 13.835225578991182, 11.715715872264504, 50.592466231676056, 6.276182263470892, 7.798723185806245, 6.3191813689871585, 72.78553183314048, 7.2097886306841446, 45.508852348697715, 59.966709333073496, 16.370238783568553, 28.64699911648494, 65.28853102242331, 5.331094015436238, 5.5097779736420955, 84.93663582421073, 32.732137803997794, 5.925310919964556, 21.06409283295649, 24.095771880879376, 70.39903344270934, 57.3261552086836, 52.21118176804213, 51.512590629965, 41.02932316533424, 14.71713181576082, 50.42961385763101, 49.017104655402, 51.22277034367748, 21.200621614747945, 28.752061246576275, 69.29523003823488, 5.639419856777944, 16.931692614620832, 5.846050912277335, 63.38717128460091, 20.5819997098765, 31.453176775150773, 32.699077121201064, 28.31363229244048, 9.042079739885057, 15.883337443161716, 41.43281085712728, 17.268207328098615, 5.489586637412598, 109.81232090120577, 30.796107158833276, 32.05101021281577, 30.11497158238541, 40.1823971118392, 59.11034357443527, 12.120821091551276, 17.345192446900793, 31.818023789552036, 57.81857011590241, 53.61655796131748, 121.69767314015608, 70.543299476954, 13.922077509186074, 14.565766634211752, 22.395870788160725, 17.035018412857642, 18.444238625802303, 83.30074348226796, 104.80457124608625, 47.07129408941399, 13.97880516205363, 5.213592750461947, 47.62576400203726, 24.801455949605657, 16.33547688008695, 25.91258250847413, 66.40946946077734, 11.903721326578522, 67.68760275252126, 14.868294168911497, 15.424889334709354, 7.514831154024098, 10.625858969612182, 64.4267465613024, 44.85405748855167, 62.90447172426681, 33.447550335167755, 31.561873669715613, 13.064443182199899, 14.556875502262814, 8.340139648644023, 66.2297351340808, 10.729981498067701, 18.060441918377528, 32.16520833463549, 59.29474566849939, 7.770479304717434, 16.09494293620289, 76.5814583046162, 84.15814639139307, 93.39343814532171, 17.022070057619608, 11.478597047193109, 11.880966811859093, 110.62511566107067, 15.62226455296298, 53.873101245261445, 8.917956326478127, 7.640798615086703, 72.994293606624, 40.745272583782324, 15.066710896886793, 6.1452592033455655, 8.610698472311736, 199.46029667099052, 17.905299646607748, 35.06068529751086, 8.677349246936647, 21.41764269458935, 54.3899361044753, 93.09878165492466, 6.280387196602798, 18.78474419371912, 13.192875890882842, 19.102582597258532, 14.324323029764118, 89.36066674684858, 72.19471871096022, 27.681139519959437, 12.654853394568912, 95.38460184824025, 14.499236629524955, 11.362272157451729, 6.241173786464104, 52.63171351457776, 9.983040003541968, 82.31203180924146, 24.90314064515077, 28.035881831713866, 51.16810409411865, 89.20237207680671, 42.50145944897662, 74.87262358821802, 70.45717899516124, 40.37872353844085, 28.44189119343759, 5.978654906089389, 29.198989072340876, 35.82040818145802, 104.90256300342442, 12.459433174125257, 26.874051458946862, 36.92513204816392, 33.574198675828164, 21.492631002488043, 6.076819378231563, 9.415596026002246, 86.27552982051802, 32.785988546529865, 30.067347582875755, 106.62598883854817, 10.58466438648148, 61.10386503278089, 81.1135806012324, 94.4564429270184, 13.10093039027952, 13.144290147093399, 43.98528918866488, 6.496741199040537, 34.88913749476752, 35.401811415098194, 6.174484890432544, 74.30438322843132, 14.94549160778574, 43.434778491639534, 39.56012765107478, 31.43416976030532, 12.74737570012471, 18.12406081711067, 74.74237753279786, 19.78117013261676, 37.043019307166816, 27.089194487639467, 16.394466259289104, 20.215041121324113, 53.953624548738105, 47.05405267479552, 18.07152160107863, 5.999509999283047, 18.638230785937974, 31.76722671370233, 83.49774469644696, 5.204213039794453, 44.91122369478572, 62.566905089724855, 5.267608911473953, 6.197718706782202, 15.206454261559612, 44.08439836536193, 142.46534786517816, 10.208648331392725, 13.410102718903499, 11.466083784640675, 46.28096375084765, 28.657266648325226, 43.09905346948372, 16.976818814012734, 15.492520002228853, 53.444157741726784, 36.36431251917229, 8.703849543896407, 8.952138496194477, 46.98978944242189, 28.99831888588689, 18.365230990604132, 100.5841573910837, 13.82431786119964, 114.59735330252656, 17.685378520480516, 32.36961979536156, 33.82474301053946, 9.038588825203398, 20.34127850241267, 73.0906696468792, 70.96109584298647, 42.615972906009446, 33.70835137042878, 202.51244282165192, 10.426041523268223, 16.156529094818197, 26.56387814460836, 83.16142428453067, 27.168873078349908, 88.69153978427826, 26.700230476619545, 6.52143287557949, 29.33687569163506, 5.3938570750559, 5.530140136539494, 47.39846077560931, 5.8064486392719425, 73.02983825839229, 52.461250610218784, 6.302057927698745, 27.551923326948298, 53.098668411602674, 63.67029616086864, 48.37052645657395, 11.36282333591947, 26.3184980381794, 18.94157627163565, 13.694447654006094, 88.54240268408894, 19.150179678186532, 75.98247987559776, 14.49084019971574, 11.976523653712178, 104.61101951029988, 12.303538931955247, 26.693661907874763, 12.16127739099705, 51.01628572673128, 5.738628746287874, 32.48336185743737, 6.393694441193501, 13.691719081522734, 18.5084376993349, 41.78016412973155, 21.910728010739643, 50.371343273297825, 14.380740765541457, 59.95214237802037, 13.798056466745408, 11.063969711410266, 26.221537793677214, 98.45515827777857, 5.2943867657640595, 40.36792777189758, 9.72579998960363, 87.94033922589536, 86.54616907430761, 57.23219061901627, 68.42446020516772, 5.77714465839727, 22.978979548352882, 88.34232084262977, 66.23968296370246, 8.14749194815142, 72.68326421739903, 6.8318245072706825, 28.13488138760826, 77.21826757958753, 6.486890225119882, 47.09005053628705, 9.456891373432718, 42.79047919350294, 5.169569273843563, 47.98881802104234, 90.94998223926443, 54.542945684263394, 141.2350483517288, 5.154278005148703, 45.52359451811644, 23.465399537453123, 17.162579962180693, 50.43416852288744, 7.191760577227865, 19.047919482094173, 83.68883087512778, 14.5038731811327, 7.218433548035261, 13.077008378598851, 38.38318970914781, 10.60386302906241, 26.098127821480787, 49.29125832286602, 33.75655340671393, 79.25123283728698, 12.946476062661507, 6.7901604319472435, 6.342732134367457, 103.41330949995029, 7.506522770108909, 95.78610379805374, 22.722879055844142, 28.628558224965246, 5.376324026253552, 20.98128100776367, 8.991136532414703, 40.77816079094108, 8.643034589369584, 59.17063811879994, 37.595939134930326, 15.256818846245974, 65.1318864583423, 97.10138088285193, 43.71240764943204, 57.932842876516816, 6.120548229564612, 23.608789432470722, 17.2748881816852, 31.873411433655654, 26.64695208861525, 13.391852915504659, 83.69149709381426, 53.40697912643449, 13.993300759765706, 109.3724345994087, 35.84186917962367, 11.676107276371154, 6.94625399938961, 13.23226687623396, 14.994945682939248, 7.139494049881809, 17.95456285054733, 62.63174907103709, 8.57227372956741, 56.10233654988802, 94.50288278224338, 74.91111531279618, 97.35653668122919, 44.185138138530704, 55.0078535388649, 52.666576623543044, 12.511998268620076, 80.68038444339871, 9.308964775312422, 11.716043193169584, 6.006763193347043, 51.20292513395372, 19.247281641992533, 24.424694603424243, 6.214180514107087, 20.443948472893844, 28.187516485020762, 15.94665136173592, 84.72312729148896, 5.515692339814456, 20.361548379422967, 64.03753695967754, 51.700636469726334, 43.90019073499236, 31.28553383368027, 22.176893530799006, 35.42427060621388, 118.09832606048539, 24.50680742623219, 10.830615140429703, 69.81552734719398, 57.31678158556897, 15.946871296177267, 106.59543406540786, 13.387801930384567, 21.365278786109737, 16.08863495287302, 17.314587563126416, 18.45470565001418, 10.347442272754014, 41.917750360133, 25.63291114333439, 12.143032367734953, 35.169199286677404, 13.399650289321277, 9.484800552554635, 5.987132981115714, 115.47573228368927, 100.68432624420385, 60.15078880814619, 13.151113168642256, 53.92937329424443, 17.537276041109063, 32.61592988097948, 67.18901392413254, 8.678590412957703, 14.987326290243665, 7.725476148306347, 61.138993887857794, 9.741160470311588, 47.45745792834277, 25.73702458419373, 29.147509187670614, 13.86770623574249, 32.91073797621834, 87.82081903142884, 6.9713370422036265, 22.987844099379352, 46.57653214759695, 32.8579237165963, 46.68779379193506, 7.911712718204638, 5.109591714108577, 6.999027929848991, 48.19940772151752, 17.044257953519516, 7.204752447529972, 40.05835487354582, 32.49302081768092, 56.68390988969162, 9.908471901048479, 82.80963063358317, 58.80176381207245, 105.70598665836613, 39.04252372076326, 42.51313482341425, 13.48317728945169, 78.97657804668088, 12.923473833997766, 5.880280198618075, 42.314227146126115, 9.638440829471847, 28.32249457583684, 19.422708680436365, 16.812317340402764, 29.234356635376248, 20.083167050479908, 40.157606171533885, 36.936711698516, 37.87809579534052, 5.210897973959334, 16.14360862944445, 96.3328343308068, 35.1980332379694, 29.509029676561916, 52.17600418094795, 38.440916737342164, 8.761154742459585, 50.00611552956412, 83.74782966072893, 13.575946279443786, 14.003305598340745, 14.022125005334734, 88.23531511029722, 14.823946841298689, 11.508532111638646, 59.62738166623078, 7.2624593518539164, 67.59388118322661, 41.21519870247705, 25.391148013679143, 82.89597480612656, 46.59171937611694, 25.07958516955071, 31.421305727134907, 57.692562661890925, 7.5513890724326, ...])
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)