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 = 45350
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);
([3913131.25, 3916290.625, 3951035.3016201654, 4003997.7903134204, 4029303.546425075, 4048020.3125, 4050986.7251207214, 4080423.711690009, 4080500.5422264654, 4126039.0625, 4129036.88584934, 4129081.9914610144, 4132758.2360678283, 4181886.0404536542, 4193621.085773818, 4200013.398689961, 4202460.808660863, 4225238.304208491, 4225751.5625, 4245463.820248129, 4257175.0, 4266432.8125, 4281718.243391783, 4325867.1875, 4329118.030350756, 4329802.780061219, 4331218.75, 4334496.019081219, 4347087.329985166, 4350912.769420925, 4351846.875, 4356507.8125, 4363200.65593562, 4365345.3125, 4366060.470703553, 4366073.682582388, 4366515.90416504, 4366638.124132687, 4367619.947938037, 4367706.960837633, 4370718.392167447, 4371646.949956168, 4372205.925171414, 4380486.592841273, 4384401.949451949, 4388738.94421345, 4388751.921813029, 4391228.052541967, 4403242.1875, 4415520.186424305, 4427283.999539066, 4427402.092569985, 4429967.783574691, 4430025.07665158, 4430040.50174107, 4430091.038494813, 4432970.124543403, 4434752.084172049, 4435616.532248155, 4441491.308573633, 4444881.25, 4448729.6875, 4449965.41619105, 4451642.1875, 4453996.9483223, 4454657.8125, 4454876.27253694, 4455100.9609160675, 4455220.507276139, 4455603.009799956, 4456115.625, 4460595.3125, 4463418.75, 4463444.891270708, 4463938.168332569, 4464556.25, 4464572.145843966, 4464963.0442038635, 4465526.029561866, 4465574.017510275, 4465593.430053366, 4465723.333351159, 4465782.277150358, 4467947.52634013, 4471431.345145133, 4475404.529075346, 4476624.66260945, 4480765.571901216, 4480967.1875, 4481401.2158667995, 4482973.4375, 4643628.626038401, 4694223.265259031, 4704461.685187352, 4720146.854431235, 4739129.6875, 4739352.635547266, 4753295.3125, 4754885.499696548, 4759222.437138126, 4776335.62449733, 4785309.375, 4786696.231000439, 4786717.1875, 4787966.538899101, 4875012.259387826, 4897786.50043578, 4898136.003593443, 4898610.372061119, 4898674.264437641, 4899974.192796085, 4901168.2194401985, 4901183.474304456, 4901659.582139301, 4902048.025196256, 4902579.177232812, 4903489.036293707, 4903840.080215404, 4904283.307800831, 4904587.864812205, 4904880.157885459, 4905384.375, 4906116.763127258, 4906576.5625, 4906757.758332673, 4906794.439465721, 4906990.625, 4907146.492848928, 4907161.111253656, 4907252.895746591, 4907392.54058112, 4907525.0, 4907565.415766867, 4907607.8125, 4907608.716924344, 4907679.605615295, 4907710.451417788, 4907764.991232808, 4907891.574164495, 4908261.227371838, 4908446.875, 4908565.095065187, 4908589.846349655, 4908670.979057948, 4908682.417792489, 4908942.796660362, 4908984.375, 4909120.909251368, 4909514.0625, 4909592.1875, 4909601.519076198, 4910061.4254164975, 4910072.669778745, 4910169.623665401, 4911585.368987891, 4918451.5625, 4920995.135367234, 4925741.150028055, 4937531.275996405, 4945390.025313979, 4946534.375, 4947329.6875, 4947997.402353612, 4948704.6124000475, 4951464.957749456, 4953026.889282657, 4953991.2588720955, 4957259.312389094, 4957678.454293997, 4957736.505875324, 4960451.3319611205, 4967535.806426109, 4973376.28373877, 4973946.94255597, 4975343.75, 4975443.75, 4975678.871650626, 4977673.4375, 4978433.420876419, 4978514.809025486, 4986576.356742766, 4987017.918179035, 4987282.334814557, 4988228.030883813, 4989359.375, 4989634.020461317, 4990278.125, 4990364.702217082, 4990424.160773675, 4990952.978736057, 4990960.9375, 4991002.978677487, 4991016.109058102, 4991187.556513984, 4991605.8027516175, 4991687.5, 4991690.306250891, 4993225.339278265, 4993658.729029559, 4994823.173708886, 4995840.416747772, 4995841.711257972, 4996040.3321137335, 4997843.434674583, 4998682.8125, 4999504.6875, 5001690.515764886, 5003811.965758476, 5003832.499492845, 5004146.557426734, 5004356.25, 5006172.049491758, 5010434.676792814, 5011971.849320923, 5013317.263052165, 5013963.392635966, 5014404.88285544, 5015607.8125, 5018831.25, 5022854.070541524, 5025473.373226033, 5026861.440647279, 5027182.8125, 5027643.75, 5028006.146404359, 5029073.4375, 5032695.844730768, 5034652.208031952, 5034940.489808695, 5035075.0, 5036832.034491466, 5037075.036614441, 5039118.5292778425, 5040237.5, 5044619.126073458, 5044626.5625, 5044765.7992104255, 5045517.1875, 5048166.408968622, 5058915.510891319, 5060699.98989253, 5060747.535572506, 5061048.4375, 5062368.063469055, 5063328.971670449, 5065173.2823392, 5065193.391926538, 5065604.014648687, 5065909.375, 5066064.0625, 5066256.25, 5066280.019373101, 5066309.175854531, 5066314.971426097, 5066490.625, 5074411.839513212, 5075614.18179357, 5075891.536634898, 5078318.425517259, 5081159.375, 5081187.191506816, 5081867.749821888, 5083774.18191738, 5087124.400129004, 5087211.523789081, 5088238.875490606, 5095902.903472791, 5096900.7061197385, 5097259.709813757, 5099710.9375, 5109321.583489801, 5109724.131745122, 5110035.083136013, 5110393.575239839, 5112125.0, 5113253.2884947425, 5113282.927258403, 5113374.742605356, 5113377.96875149, 5113457.046006523, 5113525.0, 5114061.94802848, 5114274.877155285, 5114287.69043314, 5115293.7730456935, 5116153.042695702, 5116541.751591017, 5117378.380881348, 5117431.05664551, 5117700.0, 5118310.438970927, 5119267.366370823, 5119485.9375, 5119607.775963695, 5120322.93467303, 5120380.229528686, 5123214.679340069, 5123951.156252618, 5123963.590717358, 5124118.7269636495, 5125619.976901607, 5125737.5, 5127070.970102441, 5127366.174829167, 5127668.75, 5127713.067524679, 5128089.0983925685, 5128276.280116585, 5128801.272843077, 5128948.4375, 5129798.022077477, 5131014.845919519, 5131038.384313226, 5131048.299830091, 5131407.1076852465, 5131621.331778617, 5131883.747887353, 5132061.296245527, 5132254.6875, 5132337.2638633, 5132635.261230882, 5132650.921202858, 5132893.279755655, 5132917.1875, 5133297.658018784, 5133502.202265756, 5133660.779736922, 5133704.466248645, 5133867.574302785, 5133925.576969367, 5134094.38962442, 5134204.6875, 5134243.75, 5134278.125, 5134310.23510744, 5134534.256040974, 5134704.6875, 5135011.725777919, 5135528.282230871, 5136176.651308196, 5136270.965742246, 5136285.9375, 5137965.41504291, 5138096.250389415, 5140913.792380197, 5141821.875, 5142477.1147042215, 5142856.225069319, 5142926.5625, 5143461.089056081, 5143879.580045664, 5144824.2671655845, 5145904.6875, 5146182.8125, 5147543.025840693, 5147585.908131646, 5147709.280047137, 5147742.350267877, 5148225.0, 5149020.817909351, 5149179.895623231, 5149911.364870061, 5150332.628268948, 5150380.15278537, 5150381.25, 5151135.9375, 5151250.0, 5151302.75911883, 5151356.232045523, 5151403.227802947, 5151418.670136028, 5151425.790396714, 5151461.713101399, 5151767.292458636, 5152229.566906471, 5152267.624846807, 5152729.6875, 5152783.928387507, 5152863.3271959135, 5153182.644267639, 5153329.504069807, 5153472.051692428, 5153853.104004178, 5153942.7100871755, 5154264.948784685, 5154404.403966732, 5154485.663640055, 5154501.5625, 5154607.8125, 5154992.470298114, 5156294.4077235535, 5156306.25, 5156396.992274554, 5156398.4375, 5156597.8292830745, 5157822.832183781, 5158359.375, 5159455.490324315, 5162712.492307221, 5164965.909423347, 5168710.792060463, 5169074.970030347, 5169335.36655509, 5169410.9375, 5171010.9375, 5172142.862043369, 5176491.5340620205, 5176519.767566509, 5178584.002670543, 5178616.281263541, 5178807.8125, 5181409.335549753, 5181432.932625517, 5182327.540154221, 5182508.388615424, 5185470.3125, 5186647.174479701, 5189862.509154086, 5190516.939912781, 5190753.125, 5191140.000968662, 5191210.9375, 5191494.546449102, 5191573.4375, 5191587.360450118, 5191594.035809269, 5192489.226627067, 5192778.522606086, 5192782.8125, 5192837.5, 5193013.653513649, 5193348.637795797, 5193457.813350198, 5193552.679868943, 5193592.1875, 5193622.709552322, 5193676.5625, 5193775.06753384, 5193784.375, 5193893.75, 5194009.14443096, 5194032.036439659, 5194169.797071498, 5194291.052455169, 5194326.528093854, 5194421.616155278, 5194446.814567098, 5194482.0937730055, 5194724.501699719, 5194725.466574703, 5194796.659115523, 5195010.253561956, 5195078.127154448, 5195254.917861564, 5195302.3585896725, 5195568.717219508, 5195577.274812053, 5195885.532197366, 5196102.750836038, 5196561.722542512, 5197358.551457494, 5197364.0625, 5197388.460876287, 5198266.6428934755, 5198297.071197327, 5198631.935120664, 5199619.950255404, 5199625.821048441, 5200792.1875, 5201395.18047886, 5201722.180105171, 5203306.404425865, 5203997.289501728, 5204002.297456302, 5204654.6875, 5205326.988317588, 5205620.8834833875, 5209302.842470665, 5210415.625, 5217975.336742924, 5217996.512859388, 5218469.818298957, 5222835.9375, 5223918.039490562, 5224540.570777181, 5225281.276915939, 5225715.106745598, 5226836.927904963, 5227417.110191054, 5227717.199262987, 5227746.559393449, 5231036.62315284, 5253548.91789241, 5260681.592514816, 5260753.125, 5260942.1875, 5261309.19498385, 5261889.0625, 5262017.399287504, 5262441.860007471, 5262546.238808049, 5270542.912764284, 5290250.30468824, 5292481.344510473, 5293690.033425752, 5303897.17930743, 5311056.248616161, 5311581.588941435, 5312411.5137335, 5318772.162175762, 5407914.007204427, 5427243.346515485, 5431642.826738395, 5436738.418059612, 5439598.4375, 5443081.544996898, 5443096.829036963, 5444614.0625, 5460138.726687121, 5460191.487300667, 5460917.047313659, 5461856.903094968, 5463699.763347271, 5466361.833287875, 5466768.490949608, 5466926.059498459, 5467000.935167163, 5467022.502499472, 5467586.730640499, 5468517.666134376, 5469684.387100572, 5471820.3125, 5478740.069570473, 5484219.063910522, 5491879.6875, 5492989.510976663, 5493006.893996317, 5498165.625, 5498795.588995844, 5498864.0625, 5499718.072220224, 5500455.647591941, 5500669.574813508, 5501045.28912397, 5501054.552995735, 5501055.607450599, 5501186.679896169, 5501364.363223844, 5501615.625, 5501645.023321703, 5501882.550333423, 5502585.9375, 5502596.2149163, 5502607.256592606, 5502815.818617646, 5502996.4142670855, 5504095.439263184, 5507469.496130734, 5509839.0625, 5512291.965965981, 5513280.594686694, 5514266.547917212, 5515131.25, 5515147.358031112, 5515505.651890263, 5517077.1426793095, 5518229.414306796, 5521746.875, 5523724.93163491, 5524320.3125, 5524809.095353825, 5525121.875, 5527677.501424706, 5532219.340122256, 5534812.916047324, 5535646.031701477, 5535705.099188004, 5535764.129655863, 5535971.875, 5536845.222412298, 5536902.808393716, 5537632.8125, 5538067.828768185, 5538852.88286076, 5539749.356313949, 5539790.974953119, 5541752.082988132, 5542101.5625, 5543722.730974564, 5545549.939424321, 5550479.187250321, 5553828.306634392, 5556646.479621508, 5557212.5, 5559551.5625, 5561417.661599859, 5562246.846174116, 5564887.063265318, 5566274.229607428, 5566755.816933198, 5568527.549469768, 5569570.564215554, 5570737.959520241, 5571416.052555445, 5575697.404629157, 5577209.375, 5577685.9375, 5578534.375, 5580984.375, 5583277.837673714, 5584161.283067754, 5585551.013349184, 5585729.6875, 5585937.5, 5586177.299539293, 5586217.1875, 5586251.880503079, 5586339.872806409, 5586584.790039141, 5586679.837114328, 5586736.493267812, 5586744.649610553, 5586768.144971622, 5586881.25, 5586918.503555857, 5586934.375, 5587078.501977381, 5587255.6957180975, 5587404.6875, 5587415.234948062, 5587866.466152572, 5588020.696622438, 5588074.130821448, 5588284.683305801, 5588498.4375, 5588710.9375, 5588857.8125, 5588918.777430351, 5588990.625, 5589331.25, 5589513.348339678, 5589551.088841304, 5589687.076429631, 5590085.072876444, 5590114.000080655, 5590118.802217113, 5590137.5, 5590197.558933334, 5590209.592045678, 5590413.891934816, 5590483.712355362, 5590485.056973923, 5590500.57395595, 5590717.578118165, 5590776.5625, 5590802.256713356, 5591107.295460383, 5591145.647783596, 5591154.494436118, 5591171.875, 5591195.942022215, 5591250.053466561, 5591398.71028464, 5591399.760177288, 5591404.400120585, 5591410.101487587, 5591613.166367994, 5591713.34167324, 5591785.9375, 5591823.944837843, 5591878.066577307, 5591955.916301002, 5592045.369488301, 5592045.91619358, 5592052.794539569, 5592055.229692451, 5592060.965258832, 5592095.725613604, 5592115.797736863, 5592192.1875, 5592428.962072199, 5592434.163920233, 5592560.18055039, 5592606.903433946, 5592794.254979901, 5592826.5625, 5592951.5625, 5593112.5903336685, 5593910.310687136, 5594118.926473626, 5594435.327668541, 5594540.535204184, 5594584.375, 5594647.824127522, 5594720.105410239, 5594768.75, 5594872.862187987, 5594992.1875, 5595150.665321776, 5595549.259213886, 5595781.25, 5595782.8125, 5596244.874187863, 5596430.130777106, 5597247.317721276, 5597386.836797329, 5597717.58236718, 5598393.75, 5598587.852397833, 5599434.711389935, 5600960.9375, 5602004.339000944, 5602514.773936799, 5603341.157723666, 5603404.735087713, 5605649.838666831, 5605732.59596404, 5605737.5, 5608048.4375, 5609296.875, 5609403.125, 5611001.511257931, 5611456.0616951315, 5611523.263386923, 5612331.420775791, 5612799.357968147, 5613415.625, 5613428.125, 5613437.440686445, 5613877.426072465, 5614002.077952826, 5614196.760195823, 5615501.952909947, 5615728.491429872, 5617912.236248851, 5618554.150633628, 5618861.981475414, 5620290.520426866, 5620659.07182871, 5620996.775043699, 5621741.578813236, 5623373.152929412, 5623474.035423179, 5625058.491320325, 5626048.4375, 5626583.858030931, 5627357.811736758, 5627542.442255981, 5627642.294851578, 5627814.0625, 5628215.187170057, 5628506.760777658, 5628545.974146803, 5629454.6875, 5630442.106553197, 5630548.4375, 5630793.727258707, 5632476.5625, 5632947.681080312, 5633108.74662294, 5633905.573287352, 5634320.3125, 5635241.88062671, 5635281.25, 5635368.75, 5635412.5, 5636363.406320904, 5636379.6875, 5636450.0, 5636956.346858048, 5637001.004739922, 5637015.347530211, 5637212.5, 5637225.900663574, 5637279.785309426, 5637516.7176355235, 5637681.46301787, 5637724.297750461, 5638120.140509322, 5638184.375, 5638253.125, 5638257.184138609, 5638357.537571052, 5638540.625, 5638550.0, 5638558.314428093, 5638562.894574286, 5638580.623467445, 5638615.6529302085, 5638782.8125, 5639073.4375, 5639081.103767189, 5639086.505593209, 5639100.0, 5639234.375, 5639254.574919607, 5639330.4843261335, 5639398.231004324, 5639580.008961981, 5639707.255393654, 5639721.729119674, 5639723.012895321, 5639874.52509078, 5640103.799539639, 5640240.858377919, 5640317.1875, 5640448.701153507, 5640564.178766001, 5640757.4170407, 5640775.315625896, 5640780.828248693, 5641344.2826351775, 5641476.402201573, 5641609.375, 5641681.25, 5641717.1875, 5641727.0499601215, 5641746.319916448, 5641848.4375, 5642023.4375, 5642093.75, 5642198.4375, 5642529.316588655, 5643053.125, 5643227.937457387, 5643370.263556284, 5644020.3125, 5644020.448736074, 5644020.906601264, 5645142.1875, 5645345.998535519, 5645418.04721555, 5645709.349772583, 5645749.534774829, 5645782.6850786, 5646270.2268141955, 5646320.3125, 5646364.051906354, 5646725.403106874, 5646888.824475324, 5647109.734760255, 5647140.936210186, 5647465.625, 5647465.862351173, 5647695.00104042, 5647719.876903996, 5647746.875, 5648013.9354156535, 5648024.543853259, 5648067.1875, 5648492.174198968, 5649222.184434093, 5649231.851869872, 5649738.811478945, 5650319.977958812, 5650912.5, 5651119.981606212, 5651122.789063293, 5651268.919689173, 5651852.048013388, 5651958.337438247, 5652116.29030735, 5652181.651392974, 5652237.5, 5652253.125, 5652368.578298249, 5652986.402089875, 5652995.095216488, 5653747.1509617865, 5654509.608635398, 5654953.592915804, 5655164.241074404, 5655335.152583332, 5655409.375, 5655549.476778845, 5655978.832155545, 5656328.125, 5656818.75, 5657021.483359769, 5657026.798960255, 5657298.4375, 5658552.744295433, 5658935.360525528, 5659082.8125, 5659149.825333557, 5659230.829153941, 5659270.181763488, 5659664.0625, 5660007.233348413, 5660296.771925057, 5660528.952434357, 5660756.25, 5661229.6875, 5662895.023126107, 5663047.5588769065, 5663228.125, 5664302.114459497, 5664385.9375, 5665830.26854781, 5665888.585710787, 5666052.523990002, 5666201.767971502, 5666363.232376981, 5666751.706633013, 5667369.99579975, 5667397.648292255, 5668090.625, 5668858.4452327425, 5668912.425903147, 5670346.790109298, 5670691.139397598, 5671628.125, 5672036.277950292, 5672374.74225849, 5672460.629540362, 5672550.614234502, 5672959.70081635, 5673932.581014014, 5674118.50287094, 5674135.309689812, 5674615.303877279, 5674632.535093085, 5675427.933920971, 5675493.75, 5675516.521666071, 5675743.96424425, 5676194.26899388, 5676246.875, 5676896.875, 5677038.817785758, 5677102.737055743, 5677176.753232899, 5677212.310578041, 5677405.106968345, 5677646.447825468, 5677684.015913848, 5677784.306241777, 5678058.133215705, 5678103.150506051, 5678160.393392307, 5678218.011841697, 5678438.6145280795, 5678654.581879761, 5678682.51031245, 5678941.771483604, 5678948.567290728, 5678961.042979867, 5679074.1634931965, 5679079.515566518, 5679203.699408265, 5679409.673177131, 5679418.75, 5679444.41306001, 5679472.293380288, 5679586.288358132, 5679625.86297091, 5679730.405551531, 5679734.62086213, 5679922.879888152, 5679968.75, 5679987.943082644, 5679991.980779876, 5680058.445971356, 5680119.748648204, 5680244.674757225, 5680287.5, 5680287.5, 5680457.019172616, 5680462.5, 5680493.105619158, 5680552.015807341, 5680612.323940439, 5680622.680809444, 5680826.5625, 5681002.124982972, 5681087.1058374345, 5681111.384131108, 5681473.96454206, 5681490.08265966, 5681551.052140915, 5681849.985844601, 5681869.884237078, 5681946.40426303, 5682084.375, 5682201.278018381, 5682231.25, 5682473.388770675, 5682518.427438061, 5682584.537262311, 5682584.548008669, 5682593.08239132, 5682701.666328069, 5682731.982457998, 5682843.5800544415, 5683045.929961259, 5683048.380832023, 5683054.307688666, 5683391.832329816, 5683415.625, 5683434.678861406, ...], [42.32917278745754, 41.765049777115564, 98.81457589372104, 6.390209140188539, 13.78348331107233, 73.70788869754713, 12.63138963761493, 46.228911822574496, 5.55998821620869, 98.88989073848434, 20.425260434251943, 18.794327721584335, 16.845854197274754, 72.74367032991591, 10.083728993920413, 12.898734272246182, 86.91237651476588, 14.595858287937286, 41.330132182825295, 54.04789816768993, 63.81163367283967, 43.40399955219699, 7.429737422062347, 57.00405395103654, 12.762209125274453, 23.19319610956894, 45.8731640815721, 74.98160475239, 86.6002084158429, 23.466425504210314, 65.2966122558849, 30.883344717829935, 27.09802670755974, 43.49675563621472, 21.830843777632616, 19.770413056131353, 5.473877561076808, 5.052220976292602, 10.601984339108489, 26.640217808102967, 5.03556491526355, 9.395597377141026, 23.43868853537202, 16.019518910640077, 23.08686304593991, 7.561008483416657, 63.50628511598954, 14.672342901142834, 76.20297743909055, 14.481798426217365, 22.832426443005822, 5.109033752109487, 103.70503721628188, 15.241946048759042, 14.491633529500177, 5.214086082055637, 10.84610065067466, 56.59541802304523, 16.463062328620328, 66.04104497637317, 66.34596252036886, 90.00299246288873, 73.75357291760194, 60.7186036693256, 11.244281536026511, 58.181231402627255, 13.940613453575056, 13.056183339107864, 41.49244657307945, 35.00166501607669, 79.67253930203341, 75.27067758012316, 75.26705653771327, 20.57602469719638, 18.294203068073404, 49.098979718345326, 36.72216859053435, 17.520105588650143, 13.236732487162522, 7.82741280636851, 41.207336437320656, 14.558865766175087, 5.7754031426516725, 18.182906485692826, 48.44869847263301, 14.370198450985704, 13.794607625064783, 6.7529519070709, 43.00614699120431, 23.172799625362487, 52.26647395097375, 8.57058443471386, 25.532454659960003, 18.83857030566884, 61.305883992308175, 56.18235546232588, 18.891664581532133, 33.845530348898954, 101.11044841532234, 12.13693869161671, 23.586059431971023, 58.70551887214885, 87.08107694360774, 65.43376632650215, 128.8872613105166, 14.097404276349875, 17.631375086030488, 15.19955639072431, 19.48294250179924, 29.283410747776117, 12.556692074505005, 20.841009696836707, 18.251234432653746, 28.31397772909196, 11.938861667337822, 80.97037894235727, 14.8425553210237, 10.371047495262573, 28.614554442612143, 11.750198436272983, 5.737363175796086, 42.27128775702401, 75.91938811902068, 50.2611771195357, 27.496822625943263, 18.435141855613196, 57.16209235425167, 6.428809086917731, 24.074859553325346, 5.692321415101355, 8.482555899704042, 69.26813539600089, 14.199787697159431, 72.3447395020287, 29.440024128940347, 27.003686826880084, 13.364325891534751, 15.95806173762888, 13.026006664665056, 13.323710799735224, 40.7020210625615, 6.662128232282889, 12.622605372696956, 8.673599343185225, 12.6327142810918, 83.68616875474913, 56.05932135993629, 17.837072463050735, 58.318302329786626, 62.32219341857788, 5.810774247557781, 11.98682833325934, 16.47103712756722, 6.951431961944572, 20.835837721015743, 53.87020007206236, 14.306771186545404, 7.804850587657164, 11.168585441666194, 173.74618799701457, 41.620814547976046, 46.47206341352861, 11.18029778705986, 14.662786657064018, 39.37592151300758, 5.41111531284474, 59.35089735175653, 123.43833217151965, 16.36510625071483, 5.486702383527676, 13.489488493138982, 8.218458542049069, 56.201354982843014, 5.711070980846356, 47.984488620210435, 105.07596819353873, 12.536941147010594, 46.79954622785901, 129.150036822714, 5.054352783798388, 10.820636705273673, 12.500701875132586, 55.86130492112442, 26.792685662087486, 69.3608982273639, 65.86073206388211, 44.12650604095651, 12.401215737300735, 6.917036429221024, 14.411862227952728, 71.53095670068298, 10.90644668395784, 16.011241270634926, 15.16138013875719, 10.493873631640001, 119.92519914543696, 50.62376682914014, 11.702938622050302, 42.927052393908255, 6.446519730751349, 24.997982211109587, 7.439616190669503, 41.88092987259479, 29.03968327400083, 30.900209791916556, 47.76695731527139, 8.229644524040921, 42.22054131381528, 9.080055797668422, 9.07657622926974, 94.21757005202642, 13.62145580501462, 11.634639632745694, 28.026544951724635, 22.948319467638125, 7.961493993422886, 15.742340517792313, 57.535702511202544, 29.449647250895943, 68.20064878907228, 98.54768428659347, 9.796452044142324, 75.78558943267956, 73.42843689711995, 23.609004334507013, 91.81153679641756, 5.559481242472684, 7.3021522153293565, 14.450100256890838, 76.71321449668596, 18.85171509154896, 9.362555837864019, 8.173205699086727, 45.043687096518724, 16.59894900065275, 29.088874193502544, 15.649869848473434, 72.84606695778353, 12.622882208439249, 55.66272591035458, 36.29786747360425, 12.345347776607316, 59.99433706629089, 32.85729533469316, 83.54376060042608, 16.91987023561719, 35.52194967830698, 105.1691814820501, 42.50051613717048, 47.59459311726078, 41.521858021422815, 21.6880551612064, 14.233159454494333, 5.66638817224049, 78.52445520192511, 20.028797138405164, 78.34803319075678, 20.109506953426347, 85.6933416541354, 60.20527544819727, 5.791501657536703, 7.277554092627087, 18.815301108630628, 5.669615377025849, 8.62302346069195, 25.309954843379376, 56.71331998828494, 18.548230289340545, 8.471940763244422, 75.58762300841158, 23.859796271734346, 9.996601861008893, 12.450093834761375, 139.16567917582665, 138.35059334424807, 25.37158319242055, 9.430360248226219, 10.747883502551279, 63.505397748034795, 105.59619099409544, 58.86281848086732, 5.438563761106896, 61.294699977806346, 15.720679755042347, 7.611594238578428, 9.26276652247346, 13.505071858854432, 16.015586703259103, 72.17877642374688, 53.566940716406364, 13.330076364864233, 72.45541599949406, 32.585287041778706, 14.804055095482394, 10.42327844158765, 17.507305390417336, 8.642133402314872, 22.482252407490858, 21.779278636395297, 14.85442663163409, 11.63978279104919, 103.1624729194699, 18.223716047799204, 17.55332430160822, 51.38945939749211, 5.308945613372951, 15.080102931613832, 20.25558536692695, 13.94157054339942, 46.9235279310018, 89.19649182578226, 5.8743134832647375, 19.88246109404546, 72.11400286268406, 12.79805251402348, 8.910759696463744, 52.905876245202336, 61.77337847420466, 44.022774623996355, 18.879756663166297, 30.515366159261042, 20.190593622707887, 29.06704271026782, 79.13915110716276, 5.496409130534899, 17.702186070299106, 25.755207904541425, 80.32842444266011, 11.79138868178968, 7.826157289664294, 49.70430223900524, 72.06302626557158, 75.3961636026824, 38.20437002593452, 12.803934047759347, 121.44352076333794, 130.80667832420195, 12.632922410412723, 11.382696224736831, 15.291164998705005, 51.18916183016003, 39.06326214056089, 12.468087467720393, 45.837219702925005, 14.003047289377184, 38.25221529659697, 15.31475874287237, 35.78297678045841, 61.915847482481986, 11.373160503832962, 25.50504349115141, 17.712048361158264, 110.34650470649377, 74.81833160497268, 48.85625838366373, 77.79848856827539, 6.744696875621926, 12.205817405199708, 77.08028719200331, 6.333237184021672, 11.469383377283028, 6.556239164030064, 84.3228756659437, 19.898447701073305, 64.63505230131315, 59.81027159019045, 52.49975112067733, 27.474471970569276, 6.264932610623324, 39.70727939128224, 14.64559902198611, 5.184187443565729, 34.73486347337104, 15.357245221799179, 60.98086707017869, 11.887819371639267, 75.13866921311799, 22.042730385785354, 35.21253455413223, 6.730378702605558, 7.538214606088527, 33.29677561207526, 66.10787862411452, 25.25811087516601, 19.898625085567527, 6.708191406880539, 56.43384833308815, 57.54241026114971, 34.40325001196752, 16.14135433298099, 5.864303620668214, 37.43012446675071, 23.756211085764058, 107.4389764486588, 13.039124871011728, 20.821267586136024, 77.6947238459361, 37.39551722219711, 28.373651357951395, 106.44191771061091, 25.948536857307577, 14.828496427846419, 80.43323277055404, 74.10961904080254, 94.13353364717784, 56.086482668467795, 6.188026400477193, 17.9014316024911, 22.868803532130435, 9.955661200914665, 40.286804227263914, 78.02721528559857, 11.320809537752247, 13.099528636720642, 13.984907951305761, 128.0252269237933, 21.892584673151497, 39.057561309215984, 10.761575563309227, 43.053729361426925, 7.392121824611794, 33.03227379632494, 19.194651270895783, 55.27218622014136, 8.214134372925102, 58.959947574647146, 36.44563873911631, 23.239229003629504, 57.13955134471412, 128.80467740384717, 5.121856554316165, 9.506708481124333, 17.39822870960149, 13.478873854639083, 59.70790190465031, 72.11544012863267, 32.2419592503789, 15.20531999327982, 53.7152144377168, 64.57831999283542, 25.609008470827597, 16.053497247948386, 82.58771483936681, 11.86875171727109, 15.70462209247405, 47.77968401384226, 16.113734972850835, 6.628027624055669, 60.54636673159588, 102.89518739438331, 64.00548221852729, 25.25950992437015, 11.131076015044686, 15.898796473002639, 10.109384096367062, 33.83397256732674, 12.459421448552938, 59.042267024479585, 23.942397387082107, 12.625381983410941, 12.519445484290493, 29.29307629400258, 20.535907780042475, 119.07477801903467, 15.746053536349333, 8.685465728251646, 31.031981585831872, 10.13771238618095, 33.0108924494372, 26.16304995930626, 7.717446894261914, 7.660062410459191, 8.518650441160043, 6.168014994242126, 78.72348500874546, 9.719425523054129, 5.744086773833434, 102.98976917680304, 46.27321534029744, 8.473059231706285, 25.44087653084943, 10.434128671603016, 90.56294858632558, 25.994561601483504, 27.495813885602807, 6.090902717019321, 37.97131078570392, 5.229410757603537, 14.654809926075163, 8.292807600474628, 86.28219163912532, 25.18378228213775, 11.971933048958343, 78.73668082629663, 79.90157903797193, 109.67076508136361, 50.14919205570881, 47.46302296335864, 15.815251135426044, 13.824711025243197, 20.234201196091604, 18.680492863480133, 9.603044893947992, 6.782522680609324, 7.402427410544079, 16.243819822272027, 10.74668945472761, 6.541569109679363, 17.711511701501077, 43.00552031856709, 49.420003215457456, 68.99516880555544, 6.59219442336423, 58.76168026664621, 79.8407909134442, 6.534350721618621, 14.769166833832822, 44.14382791804453, 44.00403002592543, 5.185942588390117, 7.5533095816891755, 18.194318017275823, 44.31613239675473, 46.46336377162039, 30.24679785268262, 5.033168101945462, 20.31044611959586, 9.925048123027874, 19.169938245332553, 25.615008766368433, 15.46176604384695, 69.50208624226106, 20.957425267549354, 6.307690429704799, 46.84460913404239, 16.979362907497375, 7.854042175966771, 48.21054717186146, 7.706399460467852, 31.221028566735818, 15.495781173603543, 10.300758796836847, 109.5488463358393, 28.070429373043424, 14.45248242831636, 68.14690786435753, 6.921359570617301, 88.27362280327561, 35.00382972243209, 21.81001939025224, 9.119146387757654, 69.86614095092324, 29.84463808867485, 6.982605684193964, 9.500665486252966, 107.98202900010833, 15.447734552221794, 18.827484057652196, 135.26666878057932, 14.82481210082372, 80.57798579350452, 5.8855771254941205, 174.4692831359926, 24.39071693639852, 8.872164574386906, 17.735476697358287, 74.72926393528378, 89.66939941056269, 43.05528046673834, 43.71287301798067, 16.114415576645097, 49.769279216598605, 12.999881850610917, 40.56017936296542, 16.806097510270494, 14.890352602581, 20.72460032198608, 14.955905415863182, 38.5291214871311, 77.3788550269656, 21.921604838331966, 87.58983319711757, 35.095855655940944, 6.449792071283222, 23.70880795148404, 16.467268794092142, 22.034515445314195, 80.31306100716175, 66.97234310076207, 9.280702911763127, 130.1751163910214, 86.98291411308576, 22.604353917296507, 82.23903707995143, 74.78447366483533, 17.11970706410748, 9.307147621256222, 43.59136404859739, 26.1670175416064, 22.18783169804675, 101.79746987563172, 36.837012459804754, 49.91574830120661, 76.82080606938474, 22.823312094716705, 55.54991094683023, 48.77186072595075, 30.645256756714033, 46.08369416238393, 32.17833580955962, 14.847169013209868, 17.85178416283785, 84.06592523527979, 30.19313913426008, 41.85436719062335, 41.33373286790895, 11.664018907610556, 12.684628874031471, 16.800787009300485, 30.662491068194466, 17.32200646401344, 20.00877156191862, 13.047316712229946, 30.869617815597294, 46.93894761271779, 64.56051337448775, 9.671886659152127, 27.160343816006804, 81.79457973216012, 10.568254161710287, 10.16073360810281, 151.59289687654876, 72.63654222590498, 16.9623554246384, 37.63079211897125, 50.0333478891658, 41.36223858889033, 5.069395449211955, 157.96882677489435, 156.46107761325243, 19.593300786143494, 33.76063685818949, 5.5128705063741705, 6.602352350085331, 37.7427466195612, 30.7402264529822, 105.95071027865703, 7.31364352454071, 15.838779410930442, 35.95630085709102, 20.01080964830893, 9.983309552452953, 5.261498204873187, 11.798581855757352, 94.18262958754008, 5.181850956220334, 37.55719328125433, 24.93217539975231, 40.34593878790506, 137.57867751426676, 18.042580290131824, 5.400521949357527, 54.62178414152593, 8.163700080102732, 29.397536495875563, 18.689027935433025, 5.652004504747058, 17.539586935643833, 36.38438063592688, 12.025546345170088, 9.282487258140577, 15.489543850970884, 11.21796705301799, 7.837222068339121, 21.91838665475155, 8.595737800049525, 87.82265598478968, 16.790657008921364, 7.167611505001476, 49.9931166010282, 27.32217968944903, 8.178022306946032, 10.120089424746299, 80.85479747970084, 35.210547596068096, 72.69401609481031, 122.2278180048375, 126.33140487220787, 92.4184981427689, 12.271045952054699, 8.864006606410305, 14.60995024642272, 58.53267381893817, 5.436041698660383, 14.206859500857556, 61.11318392357208, 60.35419764394112, 35.11864691075696, 18.27435282360228, 12.711659236164268, 31.045332343795035, 52.82145187389098, 5.782245454556286, 8.535777695025173, 25.812161537693655, 20.006164686190413, 36.92588486042318, 85.90140242926063, 8.482157861597347, 16.400002179411505, 93.41661843658761, 45.80555774937558, 5.654653499507628, 17.452827855134675, 23.98518754230612, 14.360284607605426, 10.805314263957884, 36.070368059466, 103.75514816745996, 31.042876410667915, 72.40215072508155, 25.94775099968509, 40.17707819107736, 14.316954698087477, 7.666194704152477, 20.18433754837639, 173.75672350891762, 32.10811401825738, 16.928109913690456, 65.38905071070825, 23.06113187684355, 26.444606433487355, 8.504417971604825, 7.741373054823158, 10.739040366038, 81.11080871429454, 21.310276771334767, 133.8607606045947, 10.684739378379785, 44.93073456048004, 95.92664778400295, 29.22946362610111, 133.8337391218373, 12.385212429976573, 57.37842377182781, 53.67220224794886, 28.510109868151126, 5.1713374547091675, 15.367103917834589, 30.965427373636963, 92.88325616652936, 9.80417216456237, 18.25020001269731, 42.159655555437816, 8.244230195726375, 36.080335736762315, 14.85553297877952, 58.38128644218092, 56.4685877188502, 5.117295940167971, 19.894544283798382, 70.0393359171369, 10.679687170265451, 82.79368076327182, 71.09383534505284, 144.374864872217, 83.60718837902806, 93.16799947252693, 92.77582085227115, 15.32400197091576, 99.52309389058863, 5.915600616384912, 83.41963992663383, 30.882294517714648, 12.791149725762965, 7.003183563664237, 93.74257770339835, 19.687842737073716, 36.053048904856276, 94.03216009071011, 60.13365109569683, 12.987724859054916, 24.076360840251446, 43.54304161249952, 55.391402753688666, 24.96620563508933, 9.688917625018762, 8.852433704844197, 7.613370897140959, 56.76764829865431, 68.51792062479964, 14.41196933368122, 118.42469324758396, 108.28638615812505, 33.715339727330864, 20.597889697402614, 45.814383102539665, 5.160580172274548, 6.538692240047632, 20.94174112963186, 14.428915190793663, 10.523107074835615, 13.753865992536888, 18.33530541384142, 8.413971585969213, 57.64761111774926, 16.051625812699033, 93.90775022515443, 13.621777156102372, 9.613346663701616, 13.545584358063433, 6.1452971858893255, 9.199442596069574, 64.85919603110831, 28.93397190903593, 61.11357143008011, 82.29016229815485, 149.9645653940834, 35.35094127315259, 36.403160292153764, 46.507043764610614, 74.91818593834907, 52.713811212078745, 29.49064711668045, 57.13981432358486, 27.592171665017652, 97.94535484812687, 43.49561267898525, 102.70677739747394, 159.42397211755244, 12.40108462233335, 18.75940579614054, 7.594138770017267, 21.84715647529286, 26.237567078496358, 26.937691937688385, 53.53364337544013, 12.714819960745523, 16.738276897339688, 14.105766279964765, 5.550799367363554, 6.307334866348133, 92.33813000195573, 7.691400270969171, 23.605456815801226, 40.93032387579888, 94.03586410818951, 59.38792926950566, 19.78821717810962, 31.747631751505597, 14.891053319694024, 74.48323236416745, 17.86876382872308, 14.063910078342143, 69.81595783567613, 67.10346238932816, 30.76564815889758, 22.927910834168717, 38.06824354664466, 48.51218329943375, 14.144096431205266, 14.82941456560614, 16.729349668978244, 38.002074184165764, 48.47798264691604, 9.190320317216942, 9.757772212995814, 14.173316667878861, 5.629495638701609, 33.62581975837744, 7.781721042491776, 5.541810546187338, 15.417076530043232, 42.98193898772583, 21.264542726430708, 64.87426572823802, 40.93723563605513, 35.35945531306763, 22.411048112009535, 7.185028802412687, 32.05813309961526, 67.6892544190159, 90.83142520024798, 40.941060906447056, 25.495589260587057, 5.680487691526383, 14.465566347773526, 30.46555321379841, 8.002348965846979, 31.223487787042338, 19.430150055352897, 75.10030581276935, 74.67555198942321, 6.231317474760666, 12.396329486318706, 74.5386722051869, 26.46452641293342, 72.74143788946196, 144.49385411339765, 21.727807736407296, 28.552255572912024, 5.297476604191032, 10.038309040352832, 6.7926268440213455, 7.492572824395075, 99.54567181298111, 45.59814883803117, 21.076021971030173, 33.59269953820316, 13.050299906731485, 7.800521930252742, 38.121287689160006, 11.507395589352424, 61.247762011534235, 56.88474373336012, 72.81153913423469, 18.759106544239593, 24.667227128716604, 7.5162357239534865, 44.22001932627483, 21.402499908396187, 24.043691743795648, 71.40002950239133, 42.40491175209682, 33.42697504744725, 47.285143834004316, 5.853406001664024, 82.76235051550977, 79.6923212617064, 144.74188221269566, 49.41524642672323, 11.439522783517651, 36.84326252499446, 11.853426004790402, 22.25169454037875, 10.609278028481379, 57.70217255897905, 16.323189110980454, 15.039625977610703, 30.578985104127, 6.940050720034193, 22.028298348170996, 29.754088545280233, 23.72283889903028, 22.373891466895348, 43.770104708902196, 30.315923163166346, 12.129596397941546, 25.53713741287975, 39.3174348865582, 7.714765004787854, 84.46002558207586, 12.350758780030667, 73.1252053876434, 8.481261213735417, 7.948330347304639, 18.63037460582854, 17.738170905252233, 6.657065719008759, 42.94253755224372, 11.898920364782368, 5.334887690828778, 122.30022010095351, 13.154507912490397, 10.258461870306677, 53.72626725275917, 56.8190494430278, 51.559314494774924, 40.903305653399926, 123.68796704049313, 9.746557282599204, 38.80019889031647, 19.428172460593338, 67.29291612952939, 5.178671778554115, 10.562848657749175, 22.180976503565283, 23.044769853715678, 13.21156256731153, 27.206676902952594, 36.37849239042977, 22.23986373808093, 13.406911514231556, 46.779911240159336, 57.69075485219858, 31.29370860454306, 14.758972918012889, 5.91179865830006, 16.371481133266542, 33.18656345070957, 19.96958633955735, 8.342257269741774, 17.992201929848196, 13.39186315306759, 5.747215029509222, 7.106634620667468, 16.24766847953749, 29.685491951811855, 29.93948863494075, 11.638375601621837, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3913131.25, 3916290.625, 3951035.3016201654, 4003997.7903134204, 4029303.546425075, 4048020.3125, 4050986.7251207214, 4080423.711690009, 4080500.5422264654, 4126039.0625, 4129036.88584934, 4129081.9914610144, 4132758.2360678283, 4181886.0404536542, 4193621.085773818, 4200013.398689961, 4202460.808660863, 4225238.304208491, 4225751.5625, 4245463.820248129, 4257175.0, 4266432.8125, 4281718.243391783, 4325867.1875, 4329118.030350756, 4329802.780061219, 4331218.75, 4334496.019081219, 4347087.329985166, 4350912.769420925, 4351846.875, 4356507.8125, 4363200.65593562, 4365345.3125, 4366060.470703553, 4366073.682582388, 4366515.90416504, 4366638.124132687, 4367619.947938037, 4367706.960837633, 4370718.392167447, 4371646.949956168, 4372205.925171414, 4380486.592841273, 4384401.949451949, 4388738.94421345, 4388751.921813029, 4391228.052541967, 4403242.1875, 4415520.186424305, 4427283.999539066, 4427402.092569985, 4429967.783574691, 4430025.07665158, 4430040.50174107, 4430091.038494813, 4432970.124543403, 4434752.084172049, 4435616.532248155, 4441491.308573633, 4444881.25, 4448729.6875, 4449965.41619105, 4451642.1875, 4453996.9483223, 4454657.8125, 4454876.27253694, 4455100.9609160675, 4455220.507276139, 4455603.009799956, 4456115.625, 4460595.3125, 4463418.75, 4463444.891270708, 4463938.168332569, 4464556.25, 4464572.145843966, 4464963.0442038635, 4465526.029561866, 4465574.017510275, 4465593.430053366, 4465723.333351159, 4465782.277150358, 4467947.52634013, 4471431.345145133, 4475404.529075346, 4476624.66260945, 4480765.571901216, 4480967.1875, 4481401.2158667995, 4482973.4375, 4643628.626038401, 4694223.265259031, 4704461.685187352, 4720146.854431235, 4739129.6875, 4739352.635547266, 4753295.3125, 4754885.499696548, 4759222.437138126, 4776335.62449733, 4785309.375, 4786696.231000439, 4786717.1875, 4787966.538899101, 4875012.259387826, 4897786.50043578, 4898136.003593443, 4898610.372061119, 4898674.264437641, 4899974.192796085, 4901168.2194401985, 4901183.474304456, 4901659.582139301, 4902048.025196256, 4902579.177232812, 4903489.036293707, 4903840.080215404, 4904283.307800831, 4904587.864812205, 4904880.157885459, 4905384.375, 4906116.763127258, 4906576.5625, 4906757.758332673, 4906794.439465721, 4906990.625, 4907146.492848928, 4907161.111253656, 4907252.895746591, 4907392.54058112, 4907525.0, 4907565.415766867, 4907607.8125, 4907608.716924344, 4907679.605615295, 4907710.451417788, 4907764.991232808, 4907891.574164495, 4908261.227371838, 4908446.875, 4908565.095065187, 4908589.846349655, 4908670.979057948, 4908682.417792489, 4908942.796660362, 4908984.375, 4909120.909251368, 4909514.0625, 4909592.1875, 4909601.519076198, 4910061.4254164975, 4910072.669778745, 4910169.623665401, 4911585.368987891, 4918451.5625, 4920995.135367234, 4925741.150028055, 4937531.275996405, 4945390.025313979, 4946534.375, 4947329.6875, 4947997.402353612, 4948704.6124000475, 4951464.957749456, 4953026.889282657, 4953991.2588720955, 4957259.312389094, 4957678.454293997, 4957736.505875324, 4960451.3319611205, 4967535.806426109, 4973376.28373877, 4973946.94255597, 4975343.75, 4975443.75, 4975678.871650626, 4977673.4375, 4978433.420876419, 4978514.809025486, 4986576.356742766, 4987017.918179035, 4987282.334814557, 4988228.030883813, 4989359.375, 4989634.020461317, 4990278.125, 4990364.702217082, 4990424.160773675, 4990952.978736057, 4990960.9375, 4991002.978677487, 4991016.109058102, 4991187.556513984, 4991605.8027516175, 4991687.5, 4991690.306250891, 4993225.339278265, 4993658.729029559, 4994823.173708886, 4995840.416747772, 4995841.711257972, 4996040.3321137335, 4997843.434674583, 4998682.8125, 4999504.6875, 5001690.515764886, 5003811.965758476, 5003832.499492845, 5004146.557426734, 5004356.25, 5006172.049491758, 5010434.676792814, 5011971.849320923, 5013317.263052165, 5013963.392635966, 5014404.88285544, 5015607.8125, 5018831.25, 5022854.070541524, 5025473.373226033, 5026861.440647279, 5027182.8125, 5027643.75, 5028006.146404359, 5029073.4375, 5032695.844730768, 5034652.208031952, 5034940.489808695, 5035075.0, 5036832.034491466, 5037075.036614441, 5039118.5292778425, 5040237.5, 5044619.126073458, 5044626.5625, 5044765.7992104255, 5045517.1875, 5048166.408968622, 5058915.510891319, 5060699.98989253, 5060747.535572506, 5061048.4375, 5062368.063469055, 5063328.971670449, 5065173.2823392, 5065193.391926538, 5065604.014648687, 5065909.375, 5066064.0625, 5066256.25, 5066280.019373101, 5066309.175854531, 5066314.971426097, 5066490.625, 5074411.839513212, 5075614.18179357, 5075891.536634898, 5078318.425517259, 5081159.375, 5081187.191506816, 5081867.749821888, 5083774.18191738, 5087124.400129004, 5087211.523789081, 5088238.875490606, 5095902.903472791, 5096900.7061197385, 5097259.709813757, 5099710.9375, 5109321.583489801, 5109724.131745122, 5110035.083136013, 5110393.575239839, 5112125.0, 5113253.2884947425, 5113282.927258403, 5113374.742605356, 5113377.96875149, 5113457.046006523, 5113525.0, 5114061.94802848, 5114274.877155285, 5114287.69043314, 5115293.7730456935, 5116153.042695702, 5116541.751591017, 5117378.380881348, 5117431.05664551, 5117700.0, 5118310.438970927, 5119267.366370823, 5119485.9375, 5119607.775963695, 5120322.93467303, 5120380.229528686, 5123214.679340069, 5123951.156252618, 5123963.590717358, 5124118.7269636495, 5125619.976901607, 5125737.5, 5127070.970102441, 5127366.174829167, 5127668.75, 5127713.067524679, 5128089.0983925685, 5128276.280116585, 5128801.272843077, 5128948.4375, 5129798.022077477, 5131014.845919519, 5131038.384313226, 5131048.299830091, 5131407.1076852465, 5131621.331778617, 5131883.747887353, 5132061.296245527, 5132254.6875, 5132337.2638633, 5132635.261230882, 5132650.921202858, 5132893.279755655, 5132917.1875, 5133297.658018784, 5133502.202265756, 5133660.779736922, 5133704.466248645, 5133867.574302785, 5133925.576969367, 5134094.38962442, 5134204.6875, 5134243.75, 5134278.125, 5134310.23510744, 5134534.256040974, 5134704.6875, 5135011.725777919, 5135528.282230871, 5136176.651308196, 5136270.965742246, 5136285.9375, 5137965.41504291, 5138096.250389415, 5140913.792380197, 5141821.875, 5142477.1147042215, 5142856.225069319, 5142926.5625, 5143461.089056081, 5143879.580045664, 5144824.2671655845, 5145904.6875, 5146182.8125, 5147543.025840693, 5147585.908131646, 5147709.280047137, 5147742.350267877, 5148225.0, 5149020.817909351, 5149179.895623231, 5149911.364870061, 5150332.628268948, 5150380.15278537, 5150381.25, 5151135.9375, 5151250.0, 5151302.75911883, 5151356.232045523, 5151403.227802947, 5151418.670136028, 5151425.790396714, 5151461.713101399, 5151767.292458636, 5152229.566906471, 5152267.624846807, 5152729.6875, 5152783.928387507, 5152863.3271959135, 5153182.644267639, 5153329.504069807, 5153472.051692428, 5153853.104004178, 5153942.7100871755, 5154264.948784685, 5154404.403966732, 5154485.663640055, 5154501.5625, 5154607.8125, 5154992.470298114, 5156294.4077235535, 5156306.25, 5156396.992274554, 5156398.4375, 5156597.8292830745, 5157822.832183781, 5158359.375, 5159455.490324315, 5162712.492307221, 5164965.909423347, 5168710.792060463, 5169074.970030347, 5169335.36655509, 5169410.9375, 5171010.9375, 5172142.862043369, 5176491.5340620205, 5176519.767566509, 5178584.002670543, 5178616.281263541, 5178807.8125, 5181409.335549753, 5181432.932625517, 5182327.540154221, 5182508.388615424, 5185470.3125, 5186647.174479701, 5189862.509154086, 5190516.939912781, 5190753.125, 5191140.000968662, 5191210.9375, 5191494.546449102, 5191573.4375, 5191587.360450118, 5191594.035809269, 5192489.226627067, 5192778.522606086, 5192782.8125, 5192837.5, 5193013.653513649, 5193348.637795797, 5193457.813350198, 5193552.679868943, 5193592.1875, 5193622.709552322, 5193676.5625, 5193775.06753384, 5193784.375, 5193893.75, 5194009.14443096, 5194032.036439659, 5194169.797071498, 5194291.052455169, 5194326.528093854, 5194421.616155278, 5194446.814567098, 5194482.0937730055, 5194724.501699719, 5194725.466574703, 5194796.659115523, 5195010.253561956, 5195078.127154448, 5195254.917861564, 5195302.3585896725, 5195568.717219508, 5195577.274812053, 5195885.532197366, 5196102.750836038, 5196561.722542512, 5197358.551457494, 5197364.0625, 5197388.460876287, 5198266.6428934755, 5198297.071197327, 5198631.935120664, 5199619.950255404, 5199625.821048441, 5200792.1875, 5201395.18047886, 5201722.180105171, 5203306.404425865, 5203997.289501728, 5204002.297456302, 5204654.6875, 5205326.988317588, 5205620.8834833875, 5209302.842470665, 5210415.625, 5217975.336742924, 5217996.512859388, 5218469.818298957, 5222835.9375, 5223918.039490562, 5224540.570777181, 5225281.276915939, 5225715.106745598, 5226836.927904963, 5227417.110191054, 5227717.199262987, 5227746.559393449, 5231036.62315284, 5253548.91789241, 5260681.592514816, 5260753.125, 5260942.1875, 5261309.19498385, 5261889.0625, 5262017.399287504, 5262441.860007471, 5262546.238808049, 5270542.912764284, 5290250.30468824, 5292481.344510473, 5293690.033425752, 5303897.17930743, 5311056.248616161, 5311581.588941435, 5312411.5137335, 5318772.162175762, 5407914.007204427, 5427243.346515485, 5431642.826738395, 5436738.418059612, 5439598.4375, 5443081.544996898, 5443096.829036963, 5444614.0625, 5460138.726687121, 5460191.487300667, 5460917.047313659, 5461856.903094968, 5463699.763347271, 5466361.833287875, 5466768.490949608, 5466926.059498459, 5467000.935167163, 5467022.502499472, 5467586.730640499, 5468517.666134376, 5469684.387100572, 5471820.3125, 5478740.069570473, 5484219.063910522, 5491879.6875, 5492989.510976663, 5493006.893996317, 5498165.625, 5498795.588995844, 5498864.0625, 5499718.072220224, 5500455.647591941, 5500669.574813508, 5501045.28912397, 5501054.552995735, 5501055.607450599, 5501186.679896169, 5501364.363223844, 5501615.625, 5501645.023321703, 5501882.550333423, 5502585.9375, 5502596.2149163, 5502607.256592606, 5502815.818617646, 5502996.4142670855, 5504095.439263184, 5507469.496130734, 5509839.0625, 5512291.965965981, 5513280.594686694, 5514266.547917212, 5515131.25, 5515147.358031112, 5515505.651890263, 5517077.1426793095, 5518229.414306796, 5521746.875, 5523724.93163491, 5524320.3125, 5524809.095353825, 5525121.875, 5527677.501424706, 5532219.340122256, 5534812.916047324, 5535646.031701477, 5535705.099188004, 5535764.129655863, 5535971.875, 5536845.222412298, 5536902.808393716, 5537632.8125, 5538067.828768185, 5538852.88286076, 5539749.356313949, 5539790.974953119, 5541752.082988132, 5542101.5625, 5543722.730974564, 5545549.939424321, 5550479.187250321, 5553828.306634392, 5556646.479621508, 5557212.5, 5559551.5625, 5561417.661599859, 5562246.846174116, 5564887.063265318, 5566274.229607428, 5566755.816933198, 5568527.549469768, 5569570.564215554, 5570737.959520241, 5571416.052555445, 5575697.404629157, 5577209.375, 5577685.9375, 5578534.375, 5580984.375, 5583277.837673714, 5584161.283067754, 5585551.013349184, 5585729.6875, 5585937.5, 5586177.299539293, 5586217.1875, 5586251.880503079, 5586339.872806409, 5586584.790039141, 5586679.837114328, 5586736.493267812, 5586744.649610553, 5586768.144971622, 5586881.25, 5586918.503555857, 5586934.375, 5587078.501977381, 5587255.6957180975, 5587404.6875, 5587415.234948062, 5587866.466152572, 5588020.696622438, 5588074.130821448, 5588284.683305801, 5588498.4375, 5588710.9375, 5588857.8125, 5588918.777430351, 5588990.625, 5589331.25, 5589513.348339678, 5589551.088841304, 5589687.076429631, 5590085.072876444, 5590114.000080655, 5590118.802217113, 5590137.5, 5590197.558933334, 5590209.592045678, 5590413.891934816, 5590483.712355362, 5590485.056973923, 5590500.57395595, 5590717.578118165, 5590776.5625, 5590802.256713356, 5591107.295460383, 5591145.647783596, 5591154.494436118, 5591171.875, 5591195.942022215, 5591250.053466561, 5591398.71028464, 5591399.760177288, 5591404.400120585, 5591410.101487587, 5591613.166367994, 5591713.34167324, 5591785.9375, 5591823.944837843, 5591878.066577307, 5591955.916301002, 5592045.369488301, 5592045.91619358, 5592052.794539569, 5592055.229692451, 5592060.965258832, 5592095.725613604, 5592115.797736863, 5592192.1875, 5592428.962072199, 5592434.163920233, 5592560.18055039, 5592606.903433946, 5592794.254979901, 5592826.5625, 5592951.5625, 5593112.5903336685, 5593910.310687136, 5594118.926473626, 5594435.327668541, 5594540.535204184, 5594584.375, 5594647.824127522, 5594720.105410239, 5594768.75, 5594872.862187987, 5594992.1875, 5595150.665321776, 5595549.259213886, 5595781.25, 5595782.8125, 5596244.874187863, 5596430.130777106, 5597247.317721276, 5597386.836797329, 5597717.58236718, 5598393.75, 5598587.852397833, 5599434.711389935, 5600960.9375, 5602004.339000944, 5602514.773936799, 5603341.157723666, 5603404.735087713, 5605649.838666831, 5605732.59596404, 5605737.5, 5608048.4375, 5609296.875, 5609403.125, 5611001.511257931, 5611456.0616951315, 5611523.263386923, 5612331.420775791, 5612799.357968147, 5613415.625, 5613428.125, 5613437.440686445, 5613877.426072465, 5614002.077952826, 5614196.760195823, 5615501.952909947, 5615728.491429872, 5617912.236248851, 5618554.150633628, 5618861.981475414, 5620290.520426866, 5620659.07182871, 5620996.775043699, 5621741.578813236, 5623373.152929412, 5623474.035423179, 5625058.491320325, 5626048.4375, 5626583.858030931, 5627357.811736758, 5627542.442255981, 5627642.294851578, 5627814.0625, 5628215.187170057, 5628506.760777658, 5628545.974146803, 5629454.6875, 5630442.106553197, 5630548.4375, 5630793.727258707, 5632476.5625, 5632947.681080312, 5633108.74662294, 5633905.573287352, 5634320.3125, 5635241.88062671, 5635281.25, 5635368.75, 5635412.5, 5636363.406320904, 5636379.6875, 5636450.0, 5636956.346858048, 5637001.004739922, 5637015.347530211, 5637212.5, 5637225.900663574, 5637279.785309426, 5637516.7176355235, 5637681.46301787, 5637724.297750461, 5638120.140509322, 5638184.375, 5638253.125, 5638257.184138609, 5638357.537571052, 5638540.625, 5638550.0, 5638558.314428093, 5638562.894574286, 5638580.623467445, 5638615.6529302085, 5638782.8125, 5639073.4375, 5639081.103767189, 5639086.505593209, 5639100.0, 5639234.375, 5639254.574919607, 5639330.4843261335, 5639398.231004324, 5639580.008961981, 5639707.255393654, 5639721.729119674, 5639723.012895321, 5639874.52509078, 5640103.799539639, 5640240.858377919, 5640317.1875, 5640448.701153507, 5640564.178766001, 5640757.4170407, 5640775.315625896, 5640780.828248693, 5641344.2826351775, 5641476.402201573, 5641609.375, 5641681.25, 5641717.1875, 5641727.0499601215, 5641746.319916448, 5641848.4375, 5642023.4375, 5642093.75, 5642198.4375, 5642529.316588655, 5643053.125, 5643227.937457387, 5643370.263556284, 5644020.3125, 5644020.448736074, 5644020.906601264, 5645142.1875, 5645345.998535519, 5645418.04721555, 5645709.349772583, 5645749.534774829, 5645782.6850786, 5646270.2268141955, 5646320.3125, 5646364.051906354, 5646725.403106874, 5646888.824475324, 5647109.734760255, 5647140.936210186, 5647465.625, 5647465.862351173, 5647695.00104042, 5647719.876903996, 5647746.875, 5648013.9354156535, 5648024.543853259, 5648067.1875, 5648492.174198968, 5649222.184434093, 5649231.851869872, 5649738.811478945, 5650319.977958812, 5650912.5, 5651119.981606212, 5651122.789063293, 5651268.919689173, 5651852.048013388, 5651958.337438247, 5652116.29030735, 5652181.651392974, 5652237.5, 5652253.125, 5652368.578298249, 5652986.402089875, 5652995.095216488, 5653747.1509617865, 5654509.608635398, 5654953.592915804, 5655164.241074404, 5655335.152583332, 5655409.375, 5655549.476778845, 5655978.832155545, 5656328.125, 5656818.75, 5657021.483359769, 5657026.798960255, 5657298.4375, 5658552.744295433, 5658935.360525528, 5659082.8125, 5659149.825333557, 5659230.829153941, 5659270.181763488, 5659664.0625, 5660007.233348413, 5660296.771925057, 5660528.952434357, 5660756.25, 5661229.6875, 5662895.023126107, 5663047.5588769065, 5663228.125, 5664302.114459497, 5664385.9375, 5665830.26854781, 5665888.585710787, 5666052.523990002, 5666201.767971502, 5666363.232376981, 5666751.706633013, 5667369.99579975, 5667397.648292255, 5668090.625, 5668858.4452327425, 5668912.425903147, 5670346.790109298, 5670691.139397598, 5671628.125, 5672036.277950292, 5672374.74225849, 5672460.629540362, 5672550.614234502, 5672959.70081635, 5673932.581014014, 5674118.50287094, 5674135.309689812, 5674615.303877279, 5674632.535093085, 5675427.933920971, 5675493.75, 5675516.521666071, 5675743.96424425, 5676194.26899388, 5676246.875, 5676896.875, 5677038.817785758, 5677102.737055743, 5677176.753232899, 5677212.310578041, 5677405.106968345, 5677646.447825468, 5677684.015913848, 5677784.306241777, 5678058.133215705, 5678103.150506051, 5678160.393392307, 5678218.011841697, 5678438.6145280795, 5678654.581879761, 5678682.51031245, 5678941.771483604, 5678948.567290728, 5678961.042979867, 5679074.1634931965, 5679079.515566518, 5679203.699408265, 5679409.673177131, 5679418.75, 5679444.41306001, 5679472.293380288, 5679586.288358132, 5679625.86297091, 5679730.405551531, 5679734.62086213, 5679922.879888152, 5679968.75, 5679987.943082644, 5679991.980779876, 5680058.445971356, 5680119.748648204, 5680244.674757225, 5680287.5, 5680287.5, 5680457.019172616, 5680462.5, 5680493.105619158, 5680552.015807341, 5680612.323940439, 5680622.680809444, 5680826.5625, 5681002.124982972, 5681087.1058374345, 5681111.384131108, 5681473.96454206, 5681490.08265966, 5681551.052140915, 5681849.985844601, 5681869.884237078, 5681946.40426303, 5682084.375, 5682201.278018381, 5682231.25, 5682473.388770675, 5682518.427438061, 5682584.537262311, 5682584.548008669, 5682593.08239132, 5682701.666328069, 5682731.982457998, 5682843.5800544415, 5683045.929961259, 5683048.380832023, 5683054.307688666, 5683391.832329816, 5683415.625, 5683434.678861406, ...], [42.32917278745754, 41.765049777115564, 98.81457589372104, 6.390209140188539, 13.78348331107233, 73.70788869754713, 12.63138963761493, 46.228911822574496, 5.55998821620869, 98.88989073848434, 20.425260434251943, 18.794327721584335, 16.845854197274754, 72.74367032991591, 10.083728993920413, 12.898734272246182, 86.91237651476588, 14.595858287937286, 41.330132182825295, 54.04789816768993, 63.81163367283967, 43.40399955219699, 7.429737422062347, 57.00405395103654, 12.762209125274453, 23.19319610956894, 45.8731640815721, 74.98160475239, 86.6002084158429, 23.466425504210314, 65.2966122558849, 30.883344717829935, 27.09802670755974, 43.49675563621472, 21.830843777632616, 19.770413056131353, 5.473877561076808, 5.052220976292602, 10.601984339108489, 26.640217808102967, 5.03556491526355, 9.395597377141026, 23.43868853537202, 16.019518910640077, 23.08686304593991, 7.561008483416657, 63.50628511598954, 14.672342901142834, 76.20297743909055, 14.481798426217365, 22.832426443005822, 5.109033752109487, 103.70503721628188, 15.241946048759042, 14.491633529500177, 5.214086082055637, 10.84610065067466, 56.59541802304523, 16.463062328620328, 66.04104497637317, 66.34596252036886, 90.00299246288873, 73.75357291760194, 60.7186036693256, 11.244281536026511, 58.181231402627255, 13.940613453575056, 13.056183339107864, 41.49244657307945, 35.00166501607669, 79.67253930203341, 75.27067758012316, 75.26705653771327, 20.57602469719638, 18.294203068073404, 49.098979718345326, 36.72216859053435, 17.520105588650143, 13.236732487162522, 7.82741280636851, 41.207336437320656, 14.558865766175087, 5.7754031426516725, 18.182906485692826, 48.44869847263301, 14.370198450985704, 13.794607625064783, 6.7529519070709, 43.00614699120431, 23.172799625362487, 52.26647395097375, 8.57058443471386, 25.532454659960003, 18.83857030566884, 61.305883992308175, 56.18235546232588, 18.891664581532133, 33.845530348898954, 101.11044841532234, 12.13693869161671, 23.586059431971023, 58.70551887214885, 87.08107694360774, 65.43376632650215, 128.8872613105166, 14.097404276349875, 17.631375086030488, 15.19955639072431, 19.48294250179924, 29.283410747776117, 12.556692074505005, 20.841009696836707, 18.251234432653746, 28.31397772909196, 11.938861667337822, 80.97037894235727, 14.8425553210237, 10.371047495262573, 28.614554442612143, 11.750198436272983, 5.737363175796086, 42.27128775702401, 75.91938811902068, 50.2611771195357, 27.496822625943263, 18.435141855613196, 57.16209235425167, 6.428809086917731, 24.074859553325346, 5.692321415101355, 8.482555899704042, 69.26813539600089, 14.199787697159431, 72.3447395020287, 29.440024128940347, 27.003686826880084, 13.364325891534751, 15.95806173762888, 13.026006664665056, 13.323710799735224, 40.7020210625615, 6.662128232282889, 12.622605372696956, 8.673599343185225, 12.6327142810918, 83.68616875474913, 56.05932135993629, 17.837072463050735, 58.318302329786626, 62.32219341857788, 5.810774247557781, 11.98682833325934, 16.47103712756722, 6.951431961944572, 20.835837721015743, 53.87020007206236, 14.306771186545404, 7.804850587657164, 11.168585441666194, 173.74618799701457, 41.620814547976046, 46.47206341352861, 11.18029778705986, 14.662786657064018, 39.37592151300758, 5.41111531284474, 59.35089735175653, 123.43833217151965, 16.36510625071483, 5.486702383527676, 13.489488493138982, 8.218458542049069, 56.201354982843014, 5.711070980846356, 47.984488620210435, 105.07596819353873, 12.536941147010594, 46.79954622785901, 129.150036822714, 5.054352783798388, 10.820636705273673, 12.500701875132586, 55.86130492112442, 26.792685662087486, 69.3608982273639, 65.86073206388211, 44.12650604095651, 12.401215737300735, 6.917036429221024, 14.411862227952728, 71.53095670068298, 10.90644668395784, 16.011241270634926, 15.16138013875719, 10.493873631640001, 119.92519914543696, 50.62376682914014, 11.702938622050302, 42.927052393908255, 6.446519730751349, 24.997982211109587, 7.439616190669503, 41.88092987259479, 29.03968327400083, 30.900209791916556, 47.76695731527139, 8.229644524040921, 42.22054131381528, 9.080055797668422, 9.07657622926974, 94.21757005202642, 13.62145580501462, 11.634639632745694, 28.026544951724635, 22.948319467638125, 7.961493993422886, 15.742340517792313, 57.535702511202544, 29.449647250895943, 68.20064878907228, 98.54768428659347, 9.796452044142324, 75.78558943267956, 73.42843689711995, 23.609004334507013, 91.81153679641756, 5.559481242472684, 7.3021522153293565, 14.450100256890838, 76.71321449668596, 18.85171509154896, 9.362555837864019, 8.173205699086727, 45.043687096518724, 16.59894900065275, 29.088874193502544, 15.649869848473434, 72.84606695778353, 12.622882208439249, 55.66272591035458, 36.29786747360425, 12.345347776607316, 59.99433706629089, 32.85729533469316, 83.54376060042608, 16.91987023561719, 35.52194967830698, 105.1691814820501, 42.50051613717048, 47.59459311726078, 41.521858021422815, 21.6880551612064, 14.233159454494333, 5.66638817224049, 78.52445520192511, 20.028797138405164, 78.34803319075678, 20.109506953426347, 85.6933416541354, 60.20527544819727, 5.791501657536703, 7.277554092627087, 18.815301108630628, 5.669615377025849, 8.62302346069195, 25.309954843379376, 56.71331998828494, 18.548230289340545, 8.471940763244422, 75.58762300841158, 23.859796271734346, 9.996601861008893, 12.450093834761375, 139.16567917582665, 138.35059334424807, 25.37158319242055, 9.430360248226219, 10.747883502551279, 63.505397748034795, 105.59619099409544, 58.86281848086732, 5.438563761106896, 61.294699977806346, 15.720679755042347, 7.611594238578428, 9.26276652247346, 13.505071858854432, 16.015586703259103, 72.17877642374688, 53.566940716406364, 13.330076364864233, 72.45541599949406, 32.585287041778706, 14.804055095482394, 10.42327844158765, 17.507305390417336, 8.642133402314872, 22.482252407490858, 21.779278636395297, 14.85442663163409, 11.63978279104919, 103.1624729194699, 18.223716047799204, 17.55332430160822, 51.38945939749211, 5.308945613372951, 15.080102931613832, 20.25558536692695, 13.94157054339942, 46.9235279310018, 89.19649182578226, 5.8743134832647375, 19.88246109404546, 72.11400286268406, 12.79805251402348, 8.910759696463744, 52.905876245202336, 61.77337847420466, 44.022774623996355, 18.879756663166297, 30.515366159261042, 20.190593622707887, 29.06704271026782, 79.13915110716276, 5.496409130534899, 17.702186070299106, 25.755207904541425, 80.32842444266011, 11.79138868178968, 7.826157289664294, 49.70430223900524, 72.06302626557158, 75.3961636026824, 38.20437002593452, 12.803934047759347, 121.44352076333794, 130.80667832420195, 12.632922410412723, 11.382696224736831, 15.291164998705005, 51.18916183016003, 39.06326214056089, 12.468087467720393, 45.837219702925005, 14.003047289377184, 38.25221529659697, 15.31475874287237, 35.78297678045841, 61.915847482481986, 11.373160503832962, 25.50504349115141, 17.712048361158264, 110.34650470649377, 74.81833160497268, 48.85625838366373, 77.79848856827539, 6.744696875621926, 12.205817405199708, 77.08028719200331, 6.333237184021672, 11.469383377283028, 6.556239164030064, 84.3228756659437, 19.898447701073305, 64.63505230131315, 59.81027159019045, 52.49975112067733, 27.474471970569276, 6.264932610623324, 39.70727939128224, 14.64559902198611, 5.184187443565729, 34.73486347337104, 15.357245221799179, 60.98086707017869, 11.887819371639267, 75.13866921311799, 22.042730385785354, 35.21253455413223, 6.730378702605558, 7.538214606088527, 33.29677561207526, 66.10787862411452, 25.25811087516601, 19.898625085567527, 6.708191406880539, 56.43384833308815, 57.54241026114971, 34.40325001196752, 16.14135433298099, 5.864303620668214, 37.43012446675071, 23.756211085764058, 107.4389764486588, 13.039124871011728, 20.821267586136024, 77.6947238459361, 37.39551722219711, 28.373651357951395, 106.44191771061091, 25.948536857307577, 14.828496427846419, 80.43323277055404, 74.10961904080254, 94.13353364717784, 56.086482668467795, 6.188026400477193, 17.9014316024911, 22.868803532130435, 9.955661200914665, 40.286804227263914, 78.02721528559857, 11.320809537752247, 13.099528636720642, 13.984907951305761, 128.0252269237933, 21.892584673151497, 39.057561309215984, 10.761575563309227, 43.053729361426925, 7.392121824611794, 33.03227379632494, 19.194651270895783, 55.27218622014136, 8.214134372925102, 58.959947574647146, 36.44563873911631, 23.239229003629504, 57.13955134471412, 128.80467740384717, 5.121856554316165, 9.506708481124333, 17.39822870960149, 13.478873854639083, 59.70790190465031, 72.11544012863267, 32.2419592503789, 15.20531999327982, 53.7152144377168, 64.57831999283542, 25.609008470827597, 16.053497247948386, 82.58771483936681, 11.86875171727109, 15.70462209247405, 47.77968401384226, 16.113734972850835, 6.628027624055669, 60.54636673159588, 102.89518739438331, 64.00548221852729, 25.25950992437015, 11.131076015044686, 15.898796473002639, 10.109384096367062, 33.83397256732674, 12.459421448552938, 59.042267024479585, 23.942397387082107, 12.625381983410941, 12.519445484290493, 29.29307629400258, 20.535907780042475, 119.07477801903467, 15.746053536349333, 8.685465728251646, 31.031981585831872, 10.13771238618095, 33.0108924494372, 26.16304995930626, 7.717446894261914, 7.660062410459191, 8.518650441160043, 6.168014994242126, 78.72348500874546, 9.719425523054129, 5.744086773833434, 102.98976917680304, 46.27321534029744, 8.473059231706285, 25.44087653084943, 10.434128671603016, 90.56294858632558, 25.994561601483504, 27.495813885602807, 6.090902717019321, 37.97131078570392, 5.229410757603537, 14.654809926075163, 8.292807600474628, 86.28219163912532, 25.18378228213775, 11.971933048958343, 78.73668082629663, 79.90157903797193, 109.67076508136361, 50.14919205570881, 47.46302296335864, 15.815251135426044, 13.824711025243197, 20.234201196091604, 18.680492863480133, 9.603044893947992, 6.782522680609324, 7.402427410544079, 16.243819822272027, 10.74668945472761, 6.541569109679363, 17.711511701501077, 43.00552031856709, 49.420003215457456, 68.99516880555544, 6.59219442336423, 58.76168026664621, 79.8407909134442, 6.534350721618621, 14.769166833832822, 44.14382791804453, 44.00403002592543, 5.185942588390117, 7.5533095816891755, 18.194318017275823, 44.31613239675473, 46.46336377162039, 30.24679785268262, 5.033168101945462, 20.31044611959586, 9.925048123027874, 19.169938245332553, 25.615008766368433, 15.46176604384695, 69.50208624226106, 20.957425267549354, 6.307690429704799, 46.84460913404239, 16.979362907497375, 7.854042175966771, 48.21054717186146, 7.706399460467852, 31.221028566735818, 15.495781173603543, 10.300758796836847, 109.5488463358393, 28.070429373043424, 14.45248242831636, 68.14690786435753, 6.921359570617301, 88.27362280327561, 35.00382972243209, 21.81001939025224, 9.119146387757654, 69.86614095092324, 29.84463808867485, 6.982605684193964, 9.500665486252966, 107.98202900010833, 15.447734552221794, 18.827484057652196, 135.26666878057932, 14.82481210082372, 80.57798579350452, 5.8855771254941205, 174.4692831359926, 24.39071693639852, 8.872164574386906, 17.735476697358287, 74.72926393528378, 89.66939941056269, 43.05528046673834, 43.71287301798067, 16.114415576645097, 49.769279216598605, 12.999881850610917, 40.56017936296542, 16.806097510270494, 14.890352602581, 20.72460032198608, 14.955905415863182, 38.5291214871311, 77.3788550269656, 21.921604838331966, 87.58983319711757, 35.095855655940944, 6.449792071283222, 23.70880795148404, 16.467268794092142, 22.034515445314195, 80.31306100716175, 66.97234310076207, 9.280702911763127, 130.1751163910214, 86.98291411308576, 22.604353917296507, 82.23903707995143, 74.78447366483533, 17.11970706410748, 9.307147621256222, 43.59136404859739, 26.1670175416064, 22.18783169804675, 101.79746987563172, 36.837012459804754, 49.91574830120661, 76.82080606938474, 22.823312094716705, 55.54991094683023, 48.77186072595075, 30.645256756714033, 46.08369416238393, 32.17833580955962, 14.847169013209868, 17.85178416283785, 84.06592523527979, 30.19313913426008, 41.85436719062335, 41.33373286790895, 11.664018907610556, 12.684628874031471, 16.800787009300485, 30.662491068194466, 17.32200646401344, 20.00877156191862, 13.047316712229946, 30.869617815597294, 46.93894761271779, 64.56051337448775, 9.671886659152127, 27.160343816006804, 81.79457973216012, 10.568254161710287, 10.16073360810281, 151.59289687654876, 72.63654222590498, 16.9623554246384, 37.63079211897125, 50.0333478891658, 41.36223858889033, 5.069395449211955, 157.96882677489435, 156.46107761325243, 19.593300786143494, 33.76063685818949, 5.5128705063741705, 6.602352350085331, 37.7427466195612, 30.7402264529822, 105.95071027865703, 7.31364352454071, 15.838779410930442, 35.95630085709102, 20.01080964830893, 9.983309552452953, 5.261498204873187, 11.798581855757352, 94.18262958754008, 5.181850956220334, 37.55719328125433, 24.93217539975231, 40.34593878790506, 137.57867751426676, 18.042580290131824, 5.400521949357527, 54.62178414152593, 8.163700080102732, 29.397536495875563, 18.689027935433025, 5.652004504747058, 17.539586935643833, 36.38438063592688, 12.025546345170088, 9.282487258140577, 15.489543850970884, 11.21796705301799, 7.837222068339121, 21.91838665475155, 8.595737800049525, 87.82265598478968, 16.790657008921364, 7.167611505001476, 49.9931166010282, 27.32217968944903, 8.178022306946032, 10.120089424746299, 80.85479747970084, 35.210547596068096, 72.69401609481031, 122.2278180048375, 126.33140487220787, 92.4184981427689, 12.271045952054699, 8.864006606410305, 14.60995024642272, 58.53267381893817, 5.436041698660383, 14.206859500857556, 61.11318392357208, 60.35419764394112, 35.11864691075696, 18.27435282360228, 12.711659236164268, 31.045332343795035, 52.82145187389098, 5.782245454556286, 8.535777695025173, 25.812161537693655, 20.006164686190413, 36.92588486042318, 85.90140242926063, 8.482157861597347, 16.400002179411505, 93.41661843658761, 45.80555774937558, 5.654653499507628, 17.452827855134675, 23.98518754230612, 14.360284607605426, 10.805314263957884, 36.070368059466, 103.75514816745996, 31.042876410667915, 72.40215072508155, 25.94775099968509, 40.17707819107736, 14.316954698087477, 7.666194704152477, 20.18433754837639, 173.75672350891762, 32.10811401825738, 16.928109913690456, 65.38905071070825, 23.06113187684355, 26.444606433487355, 8.504417971604825, 7.741373054823158, 10.739040366038, 81.11080871429454, 21.310276771334767, 133.8607606045947, 10.684739378379785, 44.93073456048004, 95.92664778400295, 29.22946362610111, 133.8337391218373, 12.385212429976573, 57.37842377182781, 53.67220224794886, 28.510109868151126, 5.1713374547091675, 15.367103917834589, 30.965427373636963, 92.88325616652936, 9.80417216456237, 18.25020001269731, 42.159655555437816, 8.244230195726375, 36.080335736762315, 14.85553297877952, 58.38128644218092, 56.4685877188502, 5.117295940167971, 19.894544283798382, 70.0393359171369, 10.679687170265451, 82.79368076327182, 71.09383534505284, 144.374864872217, 83.60718837902806, 93.16799947252693, 92.77582085227115, 15.32400197091576, 99.52309389058863, 5.915600616384912, 83.41963992663383, 30.882294517714648, 12.791149725762965, 7.003183563664237, 93.74257770339835, 19.687842737073716, 36.053048904856276, 94.03216009071011, 60.13365109569683, 12.987724859054916, 24.076360840251446, 43.54304161249952, 55.391402753688666, 24.96620563508933, 9.688917625018762, 8.852433704844197, 7.613370897140959, 56.76764829865431, 68.51792062479964, 14.41196933368122, 118.42469324758396, 108.28638615812505, 33.715339727330864, 20.597889697402614, 45.814383102539665, 5.160580172274548, 6.538692240047632, 20.94174112963186, 14.428915190793663, 10.523107074835615, 13.753865992536888, 18.33530541384142, 8.413971585969213, 57.64761111774926, 16.051625812699033, 93.90775022515443, 13.621777156102372, 9.613346663701616, 13.545584358063433, 6.1452971858893255, 9.199442596069574, 64.85919603110831, 28.93397190903593, 61.11357143008011, 82.29016229815485, 149.9645653940834, 35.35094127315259, 36.403160292153764, 46.507043764610614, 74.91818593834907, 52.713811212078745, 29.49064711668045, 57.13981432358486, 27.592171665017652, 97.94535484812687, 43.49561267898525, 102.70677739747394, 159.42397211755244, 12.40108462233335, 18.75940579614054, 7.594138770017267, 21.84715647529286, 26.237567078496358, 26.937691937688385, 53.53364337544013, 12.714819960745523, 16.738276897339688, 14.105766279964765, 5.550799367363554, 6.307334866348133, 92.33813000195573, 7.691400270969171, 23.605456815801226, 40.93032387579888, 94.03586410818951, 59.38792926950566, 19.78821717810962, 31.747631751505597, 14.891053319694024, 74.48323236416745, 17.86876382872308, 14.063910078342143, 69.81595783567613, 67.10346238932816, 30.76564815889758, 22.927910834168717, 38.06824354664466, 48.51218329943375, 14.144096431205266, 14.82941456560614, 16.729349668978244, 38.002074184165764, 48.47798264691604, 9.190320317216942, 9.757772212995814, 14.173316667878861, 5.629495638701609, 33.62581975837744, 7.781721042491776, 5.541810546187338, 15.417076530043232, 42.98193898772583, 21.264542726430708, 64.87426572823802, 40.93723563605513, 35.35945531306763, 22.411048112009535, 7.185028802412687, 32.05813309961526, 67.6892544190159, 90.83142520024798, 40.941060906447056, 25.495589260587057, 5.680487691526383, 14.465566347773526, 30.46555321379841, 8.002348965846979, 31.223487787042338, 19.430150055352897, 75.10030581276935, 74.67555198942321, 6.231317474760666, 12.396329486318706, 74.5386722051869, 26.46452641293342, 72.74143788946196, 144.49385411339765, 21.727807736407296, 28.552255572912024, 5.297476604191032, 10.038309040352832, 6.7926268440213455, 7.492572824395075, 99.54567181298111, 45.59814883803117, 21.076021971030173, 33.59269953820316, 13.050299906731485, 7.800521930252742, 38.121287689160006, 11.507395589352424, 61.247762011534235, 56.88474373336012, 72.81153913423469, 18.759106544239593, 24.667227128716604, 7.5162357239534865, 44.22001932627483, 21.402499908396187, 24.043691743795648, 71.40002950239133, 42.40491175209682, 33.42697504744725, 47.285143834004316, 5.853406001664024, 82.76235051550977, 79.6923212617064, 144.74188221269566, 49.41524642672323, 11.439522783517651, 36.84326252499446, 11.853426004790402, 22.25169454037875, 10.609278028481379, 57.70217255897905, 16.323189110980454, 15.039625977610703, 30.578985104127, 6.940050720034193, 22.028298348170996, 29.754088545280233, 23.72283889903028, 22.373891466895348, 43.770104708902196, 30.315923163166346, 12.129596397941546, 25.53713741287975, 39.3174348865582, 7.714765004787854, 84.46002558207586, 12.350758780030667, 73.1252053876434, 8.481261213735417, 7.948330347304639, 18.63037460582854, 17.738170905252233, 6.657065719008759, 42.94253755224372, 11.898920364782368, 5.334887690828778, 122.30022010095351, 13.154507912490397, 10.258461870306677, 53.72626725275917, 56.8190494430278, 51.559314494774924, 40.903305653399926, 123.68796704049313, 9.746557282599204, 38.80019889031647, 19.428172460593338, 67.29291612952939, 5.178671778554115, 10.562848657749175, 22.180976503565283, 23.044769853715678, 13.21156256731153, 27.206676902952594, 36.37849239042977, 22.23986373808093, 13.406911514231556, 46.779911240159336, 57.69075485219858, 31.29370860454306, 14.758972918012889, 5.91179865830006, 16.371481133266542, 33.18656345070957, 19.96958633955735, 8.342257269741774, 17.992201929848196, 13.39186315306759, 5.747215029509222, 7.106634620667468, 16.24766847953749, 29.685491951811855, 29.93948863494075, 11.638375601621837, ...])
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);
([3913131.25, 3916290.625, 3951035.3016201654, 4003997.7903134204, 4029303.546425075, 4048020.3125, 4050986.7251207214, 4080423.711690009, 4080500.5422264654, 4126039.0625, 4129036.88584934, 4129081.9914610144, 4132758.2360678283, 4181886.0404536542, 4193621.085773818, 4200013.398689961, 4202460.808660863, 4225238.304208491, 4225751.5625, 4245463.820248129, 4257175.0, 4266432.8125, 4281718.243391783, 4325867.1875, 4329118.030350756, 4329802.780061219, 4331218.75, 4334496.019081219, 4347087.329985166, 4350912.769420925, 4351846.875, 4356507.8125, 4363200.65593562, 4365345.3125, 4366060.470703553, 4366073.682582388, 4366515.90416504, 4366638.124132687, 4367619.947938037, 4367706.960837633, 4370718.392167447, 4371646.949956168, 4372205.925171414, 4380486.592841273, 4384401.949451949, 4388738.94421345, 4388751.921813029, 4391228.052541967, 4403242.1875, 4415520.186424305, 4427283.999539066, 4427402.092569985, 4429967.783574691, 4430025.07665158, 4430040.50174107, 4430091.038494813, 4432970.124543403, 4434752.084172049, 4435616.532248155, 4441491.308573633, 4444881.25, 4448729.6875, 4449965.41619105, 4451642.1875, 4453996.9483223, 4454657.8125, 4454876.27253694, 4455100.9609160675, 4455220.507276139, 4455603.009799956, 4456115.625, 4460595.3125, 4463418.75, 4463444.891270708, 4463938.168332569, 4464556.25, 4464572.145843966, 4464963.0442038635, 4465526.029561866, 4465574.017510275, 4465593.430053366, 4465723.333351159, 4465782.277150358, 4467947.52634013, 4471431.345145133, 4475404.529075346, 4476624.66260945, 4480765.571901216, 4480967.1875, 4481401.2158667995, 4482973.4375, 4643628.626038401, 4694223.265259031, 4704461.685187352, 4720146.854431235, 4739129.6875, 4739352.635547266, 4753295.3125, 4754885.499696548, 4759222.437138126, 4776335.62449733, 4785309.375, 4786696.231000439, 4786717.1875, 4787966.538899101, 4875012.259387826, 4897786.50043578, 4898136.003593443, 4898610.372061119, 4898674.264437641, 4899974.192796085, 4901168.2194401985, 4901183.474304456, 4901659.582139301, 4902048.025196256, 4902579.177232812, 4903489.036293707, 4903840.080215404, 4904283.307800831, 4904587.864812205, 4904880.157885459, 4905384.375, 4906116.763127258, 4906576.5625, 4906757.758332673, 4906794.439465721, 4906990.625, 4907146.492848928, 4907161.111253656, 4907252.895746591, 4907392.54058112, 4907525.0, 4907565.415766867, 4907607.8125, 4907608.716924344, 4907679.605615295, 4907710.451417788, 4907764.991232808, 4907891.574164495, 4908261.227371838, 4908446.875, 4908565.095065187, 4908589.846349655, 4908670.979057948, 4908682.417792489, 4908942.796660362, 4908984.375, 4909120.909251368, 4909514.0625, 4909592.1875, 4909601.519076198, 4910061.4254164975, 4910072.669778745, 4910169.623665401, 4911585.368987891, 4918451.5625, 4920995.135367234, 4925741.150028055, 4937531.275996405, 4945390.025313979, 4946534.375, 4947329.6875, 4947997.402353612, 4948704.6124000475, 4951464.957749456, 4953026.889282657, 4953991.2588720955, 4957259.312389094, 4957678.454293997, 4957736.505875324, 4960451.3319611205, 4967535.806426109, 4973376.28373877, 4973946.94255597, 4975343.75, 4975443.75, 4975678.871650626, 4977673.4375, 4978433.420876419, 4978514.809025486, 4986576.356742766, 4987017.918179035, 4987282.334814557, 4988228.030883813, 4989359.375, 4989634.020461317, 4990278.125, 4990364.702217082, 4990424.160773675, 4990952.978736057, 4990960.9375, 4991002.978677487, 4991016.109058102, 4991187.556513984, 4991605.8027516175, 4991687.5, 4991690.306250891, 4993225.339278265, 4993658.729029559, 4994823.173708886, 4995840.416747772, 4995841.711257972, 4996040.3321137335, 4997843.434674583, 4998682.8125, 4999504.6875, 5001690.515764886, 5003811.965758476, 5003832.499492845, 5004146.557426734, 5004356.25, 5006172.049491758, 5010434.676792814, 5011971.849320923, 5013317.263052165, 5013963.392635966, 5014404.88285544, 5015607.8125, 5018831.25, 5022854.070541524, 5025473.373226033, 5026861.440647279, 5027182.8125, 5027643.75, 5028006.146404359, 5029073.4375, 5032695.844730768, 5034652.208031952, 5034940.489808695, 5035075.0, 5036832.034491466, 5037075.036614441, 5039118.5292778425, 5040237.5, 5044619.126073458, 5044626.5625, 5044765.7992104255, 5045517.1875, 5048166.408968622, 5058915.510891319, 5060699.98989253, 5060747.535572506, 5061048.4375, 5062368.063469055, 5063328.971670449, 5065173.2823392, 5065193.391926538, 5065604.014648687, 5065909.375, 5066064.0625, 5066256.25, 5066280.019373101, 5066309.175854531, 5066314.971426097, 5066490.625, 5074411.839513212, 5075614.18179357, 5075891.536634898, 5078318.425517259, 5081159.375, 5081187.191506816, 5081867.749821888, 5083774.18191738, 5087124.400129004, 5087211.523789081, 5088238.875490606, 5095902.903472791, 5096900.7061197385, 5097259.709813757, 5099710.9375, 5109321.583489801, 5109724.131745122, 5110035.083136013, 5110393.575239839, 5112125.0, 5113253.2884947425, 5113282.927258403, 5113374.742605356, 5113377.96875149, 5113457.046006523, 5113525.0, 5114061.94802848, 5114274.877155285, 5114287.69043314, 5115293.7730456935, 5116153.042695702, 5116541.751591017, 5117378.380881348, 5117431.05664551, 5117700.0, 5118310.438970927, 5119267.366370823, 5119485.9375, 5119607.775963695, 5120322.93467303, 5120380.229528686, 5123214.679340069, 5123951.156252618, 5123963.590717358, 5124118.7269636495, 5125619.976901607, 5125737.5, 5127070.970102441, 5127366.174829167, 5127668.75, 5127713.067524679, 5128089.0983925685, 5128276.280116585, 5128801.272843077, 5128948.4375, 5129798.022077477, 5131014.845919519, 5131038.384313226, 5131048.299830091, 5131407.1076852465, 5131621.331778617, 5131883.747887353, 5132061.296245527, 5132254.6875, 5132337.2638633, 5132635.261230882, 5132650.921202858, 5132893.279755655, 5132917.1875, 5133297.658018784, 5133502.202265756, 5133660.779736922, 5133704.466248645, 5133867.574302785, 5133925.576969367, 5134094.38962442, 5134204.6875, 5134243.75, 5134278.125, 5134310.23510744, 5134534.256040974, 5134704.6875, 5135011.725777919, 5135528.282230871, 5136176.651308196, 5136270.965742246, 5136285.9375, 5137965.41504291, 5138096.250389415, 5140913.792380197, 5141821.875, 5142477.1147042215, 5142856.225069319, 5142926.5625, 5143461.089056081, 5143879.580045664, 5144824.2671655845, 5145904.6875, 5146182.8125, 5147543.025840693, 5147585.908131646, 5147709.280047137, 5147742.350267877, 5148225.0, 5149020.817909351, 5149179.895623231, 5149911.364870061, 5150332.628268948, 5150380.15278537, 5150381.25, 5151135.9375, 5151250.0, 5151302.75911883, 5151356.232045523, 5151403.227802947, 5151418.670136028, 5151425.790396714, 5151461.713101399, 5151767.292458636, 5152229.566906471, 5152267.624846807, 5152729.6875, 5152783.928387507, 5152863.3271959135, 5153182.644267639, 5153329.504069807, 5153472.051692428, 5153853.104004178, 5153942.7100871755, 5154264.948784685, 5154404.403966732, 5154485.663640055, 5154501.5625, 5154607.8125, 5154992.470298114, 5156294.4077235535, 5156306.25, 5156396.992274554, 5156398.4375, 5156597.8292830745, 5157822.832183781, 5158359.375, 5159455.490324315, 5162712.492307221, 5164965.909423347, 5168710.792060463, 5169074.970030347, 5169335.36655509, 5169410.9375, 5171010.9375, 5172142.862043369, 5176491.5340620205, 5176519.767566509, 5178584.002670543, 5178616.281263541, 5178807.8125, 5181409.335549753, 5181432.932625517, 5182327.540154221, 5182508.388615424, 5185470.3125, 5186647.174479701, 5189862.509154086, 5190516.939912781, 5190753.125, 5191140.000968662, 5191210.9375, 5191494.546449102, 5191573.4375, 5191587.360450118, 5191594.035809269, 5192489.226627067, 5192778.522606086, 5192782.8125, 5192837.5, 5193013.653513649, 5193348.637795797, 5193457.813350198, 5193552.679868943, 5193592.1875, 5193622.709552322, 5193676.5625, 5193775.06753384, 5193784.375, 5193893.75, 5194009.14443096, 5194032.036439659, 5194169.797071498, 5194291.052455169, 5194326.528093854, 5194421.616155278, 5194446.814567098, 5194482.0937730055, 5194724.501699719, 5194725.466574703, 5194796.659115523, 5195010.253561956, 5195078.127154448, 5195254.917861564, 5195302.3585896725, 5195568.717219508, 5195577.274812053, 5195885.532197366, 5196102.750836038, 5196561.722542512, 5197358.551457494, 5197364.0625, 5197388.460876287, 5198266.6428934755, 5198297.071197327, 5198631.935120664, 5199619.950255404, 5199625.821048441, 5200792.1875, 5201395.18047886, 5201722.180105171, 5203306.404425865, 5203997.289501728, 5204002.297456302, 5204654.6875, 5205326.988317588, 5205620.8834833875, 5209302.842470665, 5210415.625, 5217975.336742924, 5217996.512859388, 5218469.818298957, 5222835.9375, 5223918.039490562, 5224540.570777181, 5225281.276915939, 5225715.106745598, 5226836.927904963, 5227417.110191054, 5227717.199262987, 5227746.559393449, 5231036.62315284, 5253548.91789241, 5260681.592514816, 5260753.125, 5260942.1875, 5261309.19498385, 5261889.0625, 5262017.399287504, 5262441.860007471, 5262546.238808049, 5270542.912764284, 5290250.30468824, 5292481.344510473, 5293690.033425752, 5303897.17930743, 5311056.248616161, 5311581.588941435, 5312411.5137335, 5318772.162175762, 5407914.007204427, 5427243.346515485, 5431642.826738395, 5436738.418059612, 5439598.4375, 5443081.544996898, 5443096.829036963, 5444614.0625, 5460138.726687121, 5460191.487300667, 5460917.047313659, 5461856.903094968, 5463699.763347271, 5466361.833287875, 5466768.490949608, 5466926.059498459, 5467000.935167163, 5467022.502499472, 5467586.730640499, 5468517.666134376, 5469684.387100572, 5471820.3125, 5478740.069570473, 5484219.063910522, 5491879.6875, 5492989.510976663, 5493006.893996317, 5498165.625, 5498795.588995844, 5498864.0625, 5499718.072220224, 5500455.647591941, 5500669.574813508, 5501045.28912397, 5501054.552995735, 5501055.607450599, 5501186.679896169, 5501364.363223844, 5501615.625, 5501645.023321703, 5501882.550333423, 5502585.9375, 5502596.2149163, 5502607.256592606, 5502815.818617646, 5502996.4142670855, 5504095.439263184, 5507469.496130734, 5509839.0625, 5512291.965965981, 5513280.594686694, 5514266.547917212, 5515131.25, 5515147.358031112, 5515505.651890263, 5517077.1426793095, 5518229.414306796, 5521746.875, 5523724.93163491, 5524320.3125, 5524809.095353825, 5525121.875, 5527677.501424706, 5532219.340122256, 5534812.916047324, 5535646.031701477, 5535705.099188004, 5535764.129655863, 5535971.875, 5536845.222412298, 5536902.808393716, 5537632.8125, 5538067.828768185, 5538852.88286076, 5539749.356313949, 5539790.974953119, 5541752.082988132, 5542101.5625, 5543722.730974564, 5545549.939424321, 5550479.187250321, 5553828.306634392, 5556646.479621508, 5557212.5, 5559551.5625, 5561417.661599859, 5562246.846174116, 5564887.063265318, 5566274.229607428, 5566755.816933198, 5568527.549469768, 5569570.564215554, 5570737.959520241, 5571416.052555445, 5575697.404629157, 5577209.375, 5577685.9375, 5578534.375, 5580984.375, 5583277.837673714, 5584161.283067754, 5585551.013349184, 5585729.6875, 5585937.5, 5586177.299539293, 5586217.1875, 5586251.880503079, 5586339.872806409, 5586584.790039141, 5586679.837114328, 5586736.493267812, 5586744.649610553, 5586768.144971622, 5586881.25, 5586918.503555857, 5586934.375, 5587078.501977381, 5587255.6957180975, 5587404.6875, 5587415.234948062, 5587866.466152572, 5588020.696622438, 5588074.130821448, 5588284.683305801, 5588498.4375, 5588710.9375, 5588857.8125, 5588918.777430351, 5588990.625, 5589331.25, 5589513.348339678, 5589551.088841304, 5589687.076429631, 5590085.072876444, 5590114.000080655, 5590118.802217113, 5590137.5, 5590197.558933334, 5590209.592045678, 5590413.891934816, 5590483.712355362, 5590485.056973923, 5590500.57395595, 5590717.578118165, 5590776.5625, 5590802.256713356, 5591107.295460383, 5591145.647783596, 5591154.494436118, 5591171.875, 5591195.942022215, 5591250.053466561, 5591398.71028464, 5591399.760177288, 5591404.400120585, 5591410.101487587, 5591613.166367994, 5591713.34167324, 5591785.9375, 5591823.944837843, 5591878.066577307, 5591955.916301002, 5592045.369488301, 5592045.91619358, 5592052.794539569, 5592055.229692451, 5592060.965258832, 5592095.725613604, 5592115.797736863, 5592192.1875, 5592428.962072199, 5592434.163920233, 5592560.18055039, 5592606.903433946, 5592794.254979901, 5592826.5625, 5592951.5625, 5593112.5903336685, 5593910.310687136, 5594118.926473626, 5594435.327668541, 5594540.535204184, 5594584.375, 5594647.824127522, 5594720.105410239, 5594768.75, 5594872.862187987, 5594992.1875, 5595150.665321776, 5595549.259213886, 5595781.25, 5595782.8125, 5596244.874187863, 5596430.130777106, 5597247.317721276, 5597386.836797329, 5597717.58236718, 5598393.75, 5598587.852397833, 5599434.711389935, 5600960.9375, 5602004.339000944, 5602514.773936799, 5603341.157723666, 5603404.735087713, 5605649.838666831, 5605732.59596404, 5605737.5, 5608048.4375, 5609296.875, 5609403.125, 5611001.511257931, 5611456.0616951315, 5611523.263386923, 5612331.420775791, 5612799.357968147, 5613415.625, 5613428.125, 5613437.440686445, 5613877.426072465, 5614002.077952826, 5614196.760195823, 5615501.952909947, 5615728.491429872, 5617912.236248851, 5618554.150633628, 5618861.981475414, 5620290.520426866, 5620659.07182871, 5620996.775043699, 5621741.578813236, 5623373.152929412, 5623474.035423179, 5625058.491320325, 5626048.4375, 5626583.858030931, 5627357.811736758, 5627542.442255981, 5627642.294851578, 5627814.0625, 5628215.187170057, 5628506.760777658, 5628545.974146803, 5629454.6875, 5630442.106553197, 5630548.4375, 5630793.727258707, 5632476.5625, 5632947.681080312, 5633108.74662294, 5633905.573287352, 5634320.3125, 5635241.88062671, 5635281.25, 5635368.75, 5635412.5, 5636363.406320904, 5636379.6875, 5636450.0, 5636956.346858048, 5637001.004739922, 5637015.347530211, 5637212.5, 5637225.900663574, 5637279.785309426, 5637516.7176355235, 5637681.46301787, 5637724.297750461, 5638120.140509322, 5638184.375, 5638253.125, 5638257.184138609, 5638357.537571052, 5638540.625, 5638550.0, 5638558.314428093, 5638562.894574286, 5638580.623467445, 5638615.6529302085, 5638782.8125, 5639073.4375, 5639081.103767189, 5639086.505593209, 5639100.0, 5639234.375, 5639254.574919607, 5639330.4843261335, 5639398.231004324, 5639580.008961981, 5639707.255393654, 5639721.729119674, 5639723.012895321, 5639874.52509078, 5640103.799539639, 5640240.858377919, 5640317.1875, 5640448.701153507, 5640564.178766001, 5640757.4170407, 5640775.315625896, 5640780.828248693, 5641344.2826351775, 5641476.402201573, 5641609.375, 5641681.25, 5641717.1875, 5641727.0499601215, 5641746.319916448, 5641848.4375, 5642023.4375, 5642093.75, 5642198.4375, 5642529.316588655, 5643053.125, 5643227.937457387, 5643370.263556284, 5644020.3125, 5644020.448736074, 5644020.906601264, 5645142.1875, 5645345.998535519, 5645418.04721555, 5645709.349772583, 5645749.534774829, 5645782.6850786, 5646270.2268141955, 5646320.3125, 5646364.051906354, 5646725.403106874, 5646888.824475324, 5647109.734760255, 5647140.936210186, 5647465.625, 5647465.862351173, 5647695.00104042, 5647719.876903996, 5647746.875, 5648013.9354156535, 5648024.543853259, 5648067.1875, 5648492.174198968, 5649222.184434093, 5649231.851869872, 5649738.811478945, 5650319.977958812, 5650912.5, 5651119.981606212, 5651122.789063293, 5651268.919689173, 5651852.048013388, 5651958.337438247, 5652116.29030735, 5652181.651392974, 5652237.5, 5652253.125, 5652368.578298249, 5652986.402089875, 5652995.095216488, 5653747.1509617865, 5654509.608635398, 5654953.592915804, 5655164.241074404, 5655335.152583332, 5655409.375, 5655549.476778845, 5655978.832155545, 5656328.125, 5656818.75, 5657021.483359769, 5657026.798960255, 5657298.4375, 5658552.744295433, 5658935.360525528, 5659082.8125, 5659149.825333557, 5659230.829153941, 5659270.181763488, 5659664.0625, 5660007.233348413, 5660296.771925057, 5660528.952434357, 5660756.25, 5661229.6875, 5662895.023126107, 5663047.5588769065, 5663228.125, 5664302.114459497, 5664385.9375, 5665830.26854781, 5665888.585710787, 5666052.523990002, 5666201.767971502, 5666363.232376981, 5666751.706633013, 5667369.99579975, 5667397.648292255, 5668090.625, 5668858.4452327425, 5668912.425903147, 5670346.790109298, 5670691.139397598, 5671628.125, 5672036.277950292, 5672374.74225849, 5672460.629540362, 5672550.614234502, 5672959.70081635, 5673932.581014014, 5674118.50287094, 5674135.309689812, 5674615.303877279, 5674632.535093085, 5675427.933920971, 5675493.75, 5675516.521666071, 5675743.96424425, 5676194.26899388, 5676246.875, 5676896.875, 5677038.817785758, 5677102.737055743, 5677176.753232899, 5677212.310578041, 5677405.106968345, 5677646.447825468, 5677684.015913848, 5677784.306241777, 5678058.133215705, 5678103.150506051, 5678160.393392307, 5678218.011841697, 5678438.6145280795, 5678654.581879761, 5678682.51031245, 5678941.771483604, 5678948.567290728, 5678961.042979867, 5679074.1634931965, 5679079.515566518, 5679203.699408265, 5679409.673177131, 5679418.75, 5679444.41306001, 5679472.293380288, 5679586.288358132, 5679625.86297091, 5679730.405551531, 5679734.62086213, 5679922.879888152, 5679968.75, 5679987.943082644, 5679991.980779876, 5680058.445971356, 5680119.748648204, 5680244.674757225, 5680287.5, 5680287.5, 5680457.019172616, 5680462.5, 5680493.105619158, 5680552.015807341, 5680612.323940439, 5680622.680809444, 5680826.5625, 5681002.124982972, 5681087.1058374345, 5681111.384131108, 5681473.96454206, 5681490.08265966, 5681551.052140915, 5681849.985844601, 5681869.884237078, 5681946.40426303, 5682084.375, 5682201.278018381, 5682231.25, 5682473.388770675, 5682518.427438061, 5682584.537262311, 5682584.548008669, 5682593.08239132, 5682701.666328069, 5682731.982457998, 5682843.5800544415, 5683045.929961259, 5683048.380832023, 5683054.307688666, 5683391.832329816, 5683415.625, 5683434.678861406, ...], [42.32917278745754, 41.765049777115564, 98.81457589372104, 6.390209140188539, 13.78348331107233, 73.70788869754713, 12.63138963761493, 46.228911822574496, 5.55998821620869, 98.88989073848434, 20.425260434251943, 18.794327721584335, 16.845854197274754, 72.74367032991591, 10.083728993920413, 12.898734272246182, 86.91237651476588, 14.595858287937286, 41.330132182825295, 54.04789816768993, 63.81163367283967, 43.40399955219699, 7.429737422062347, 57.00405395103654, 12.762209125274453, 23.19319610956894, 45.8731640815721, 74.98160475239, 86.6002084158429, 23.466425504210314, 65.2966122558849, 30.883344717829935, 27.09802670755974, 43.49675563621472, 21.830843777632616, 19.770413056131353, 5.473877561076808, 5.052220976292602, 10.601984339108489, 26.640217808102967, 5.03556491526355, 9.395597377141026, 23.43868853537202, 16.019518910640077, 23.08686304593991, 7.561008483416657, 63.50628511598954, 14.672342901142834, 76.20297743909055, 14.481798426217365, 22.832426443005822, 5.109033752109487, 103.70503721628188, 15.241946048759042, 14.491633529500177, 5.214086082055637, 10.84610065067466, 56.59541802304523, 16.463062328620328, 66.04104497637317, 66.34596252036886, 90.00299246288873, 73.75357291760194, 60.7186036693256, 11.244281536026511, 58.181231402627255, 13.940613453575056, 13.056183339107864, 41.49244657307945, 35.00166501607669, 79.67253930203341, 75.27067758012316, 75.26705653771327, 20.57602469719638, 18.294203068073404, 49.098979718345326, 36.72216859053435, 17.520105588650143, 13.236732487162522, 7.82741280636851, 41.207336437320656, 14.558865766175087, 5.7754031426516725, 18.182906485692826, 48.44869847263301, 14.370198450985704, 13.794607625064783, 6.7529519070709, 43.00614699120431, 23.172799625362487, 52.26647395097375, 8.57058443471386, 25.532454659960003, 18.83857030566884, 61.305883992308175, 56.18235546232588, 18.891664581532133, 33.845530348898954, 101.11044841532234, 12.13693869161671, 23.586059431971023, 58.70551887214885, 87.08107694360774, 65.43376632650215, 128.8872613105166, 14.097404276349875, 17.631375086030488, 15.19955639072431, 19.48294250179924, 29.283410747776117, 12.556692074505005, 20.841009696836707, 18.251234432653746, 28.31397772909196, 11.938861667337822, 80.97037894235727, 14.8425553210237, 10.371047495262573, 28.614554442612143, 11.750198436272983, 5.737363175796086, 42.27128775702401, 75.91938811902068, 50.2611771195357, 27.496822625943263, 18.435141855613196, 57.16209235425167, 6.428809086917731, 24.074859553325346, 5.692321415101355, 8.482555899704042, 69.26813539600089, 14.199787697159431, 72.3447395020287, 29.440024128940347, 27.003686826880084, 13.364325891534751, 15.95806173762888, 13.026006664665056, 13.323710799735224, 40.7020210625615, 6.662128232282889, 12.622605372696956, 8.673599343185225, 12.6327142810918, 83.68616875474913, 56.05932135993629, 17.837072463050735, 58.318302329786626, 62.32219341857788, 5.810774247557781, 11.98682833325934, 16.47103712756722, 6.951431961944572, 20.835837721015743, 53.87020007206236, 14.306771186545404, 7.804850587657164, 11.168585441666194, 173.74618799701457, 41.620814547976046, 46.47206341352861, 11.18029778705986, 14.662786657064018, 39.37592151300758, 5.41111531284474, 59.35089735175653, 123.43833217151965, 16.36510625071483, 5.486702383527676, 13.489488493138982, 8.218458542049069, 56.201354982843014, 5.711070980846356, 47.984488620210435, 105.07596819353873, 12.536941147010594, 46.79954622785901, 129.150036822714, 5.054352783798388, 10.820636705273673, 12.500701875132586, 55.86130492112442, 26.792685662087486, 69.3608982273639, 65.86073206388211, 44.12650604095651, 12.401215737300735, 6.917036429221024, 14.411862227952728, 71.53095670068298, 10.90644668395784, 16.011241270634926, 15.16138013875719, 10.493873631640001, 119.92519914543696, 50.62376682914014, 11.702938622050302, 42.927052393908255, 6.446519730751349, 24.997982211109587, 7.439616190669503, 41.88092987259479, 29.03968327400083, 30.900209791916556, 47.76695731527139, 8.229644524040921, 42.22054131381528, 9.080055797668422, 9.07657622926974, 94.21757005202642, 13.62145580501462, 11.634639632745694, 28.026544951724635, 22.948319467638125, 7.961493993422886, 15.742340517792313, 57.535702511202544, 29.449647250895943, 68.20064878907228, 98.54768428659347, 9.796452044142324, 75.78558943267956, 73.42843689711995, 23.609004334507013, 91.81153679641756, 5.559481242472684, 7.3021522153293565, 14.450100256890838, 76.71321449668596, 18.85171509154896, 9.362555837864019, 8.173205699086727, 45.043687096518724, 16.59894900065275, 29.088874193502544, 15.649869848473434, 72.84606695778353, 12.622882208439249, 55.66272591035458, 36.29786747360425, 12.345347776607316, 59.99433706629089, 32.85729533469316, 83.54376060042608, 16.91987023561719, 35.52194967830698, 105.1691814820501, 42.50051613717048, 47.59459311726078, 41.521858021422815, 21.6880551612064, 14.233159454494333, 5.66638817224049, 78.52445520192511, 20.028797138405164, 78.34803319075678, 20.109506953426347, 85.6933416541354, 60.20527544819727, 5.791501657536703, 7.277554092627087, 18.815301108630628, 5.669615377025849, 8.62302346069195, 25.309954843379376, 56.71331998828494, 18.548230289340545, 8.471940763244422, 75.58762300841158, 23.859796271734346, 9.996601861008893, 12.450093834761375, 139.16567917582665, 138.35059334424807, 25.37158319242055, 9.430360248226219, 10.747883502551279, 63.505397748034795, 105.59619099409544, 58.86281848086732, 5.438563761106896, 61.294699977806346, 15.720679755042347, 7.611594238578428, 9.26276652247346, 13.505071858854432, 16.015586703259103, 72.17877642374688, 53.566940716406364, 13.330076364864233, 72.45541599949406, 32.585287041778706, 14.804055095482394, 10.42327844158765, 17.507305390417336, 8.642133402314872, 22.482252407490858, 21.779278636395297, 14.85442663163409, 11.63978279104919, 103.1624729194699, 18.223716047799204, 17.55332430160822, 51.38945939749211, 5.308945613372951, 15.080102931613832, 20.25558536692695, 13.94157054339942, 46.9235279310018, 89.19649182578226, 5.8743134832647375, 19.88246109404546, 72.11400286268406, 12.79805251402348, 8.910759696463744, 52.905876245202336, 61.77337847420466, 44.022774623996355, 18.879756663166297, 30.515366159261042, 20.190593622707887, 29.06704271026782, 79.13915110716276, 5.496409130534899, 17.702186070299106, 25.755207904541425, 80.32842444266011, 11.79138868178968, 7.826157289664294, 49.70430223900524, 72.06302626557158, 75.3961636026824, 38.20437002593452, 12.803934047759347, 121.44352076333794, 130.80667832420195, 12.632922410412723, 11.382696224736831, 15.291164998705005, 51.18916183016003, 39.06326214056089, 12.468087467720393, 45.837219702925005, 14.003047289377184, 38.25221529659697, 15.31475874287237, 35.78297678045841, 61.915847482481986, 11.373160503832962, 25.50504349115141, 17.712048361158264, 110.34650470649377, 74.81833160497268, 48.85625838366373, 77.79848856827539, 6.744696875621926, 12.205817405199708, 77.08028719200331, 6.333237184021672, 11.469383377283028, 6.556239164030064, 84.3228756659437, 19.898447701073305, 64.63505230131315, 59.81027159019045, 52.49975112067733, 27.474471970569276, 6.264932610623324, 39.70727939128224, 14.64559902198611, 5.184187443565729, 34.73486347337104, 15.357245221799179, 60.98086707017869, 11.887819371639267, 75.13866921311799, 22.042730385785354, 35.21253455413223, 6.730378702605558, 7.538214606088527, 33.29677561207526, 66.10787862411452, 25.25811087516601, 19.898625085567527, 6.708191406880539, 56.43384833308815, 57.54241026114971, 34.40325001196752, 16.14135433298099, 5.864303620668214, 37.43012446675071, 23.756211085764058, 107.4389764486588, 13.039124871011728, 20.821267586136024, 77.6947238459361, 37.39551722219711, 28.373651357951395, 106.44191771061091, 25.948536857307577, 14.828496427846419, 80.43323277055404, 74.10961904080254, 94.13353364717784, 56.086482668467795, 6.188026400477193, 17.9014316024911, 22.868803532130435, 9.955661200914665, 40.286804227263914, 78.02721528559857, 11.320809537752247, 13.099528636720642, 13.984907951305761, 128.0252269237933, 21.892584673151497, 39.057561309215984, 10.761575563309227, 43.053729361426925, 7.392121824611794, 33.03227379632494, 19.194651270895783, 55.27218622014136, 8.214134372925102, 58.959947574647146, 36.44563873911631, 23.239229003629504, 57.13955134471412, 128.80467740384717, 5.121856554316165, 9.506708481124333, 17.39822870960149, 13.478873854639083, 59.70790190465031, 72.11544012863267, 32.2419592503789, 15.20531999327982, 53.7152144377168, 64.57831999283542, 25.609008470827597, 16.053497247948386, 82.58771483936681, 11.86875171727109, 15.70462209247405, 47.77968401384226, 16.113734972850835, 6.628027624055669, 60.54636673159588, 102.89518739438331, 64.00548221852729, 25.25950992437015, 11.131076015044686, 15.898796473002639, 10.109384096367062, 33.83397256732674, 12.459421448552938, 59.042267024479585, 23.942397387082107, 12.625381983410941, 12.519445484290493, 29.29307629400258, 20.535907780042475, 119.07477801903467, 15.746053536349333, 8.685465728251646, 31.031981585831872, 10.13771238618095, 33.0108924494372, 26.16304995930626, 7.717446894261914, 7.660062410459191, 8.518650441160043, 6.168014994242126, 78.72348500874546, 9.719425523054129, 5.744086773833434, 102.98976917680304, 46.27321534029744, 8.473059231706285, 25.44087653084943, 10.434128671603016, 90.56294858632558, 25.994561601483504, 27.495813885602807, 6.090902717019321, 37.97131078570392, 5.229410757603537, 14.654809926075163, 8.292807600474628, 86.28219163912532, 25.18378228213775, 11.971933048958343, 78.73668082629663, 79.90157903797193, 109.67076508136361, 50.14919205570881, 47.46302296335864, 15.815251135426044, 13.824711025243197, 20.234201196091604, 18.680492863480133, 9.603044893947992, 6.782522680609324, 7.402427410544079, 16.243819822272027, 10.74668945472761, 6.541569109679363, 17.711511701501077, 43.00552031856709, 49.420003215457456, 68.99516880555544, 6.59219442336423, 58.76168026664621, 79.8407909134442, 6.534350721618621, 14.769166833832822, 44.14382791804453, 44.00403002592543, 5.185942588390117, 7.5533095816891755, 18.194318017275823, 44.31613239675473, 46.46336377162039, 30.24679785268262, 5.033168101945462, 20.31044611959586, 9.925048123027874, 19.169938245332553, 25.615008766368433, 15.46176604384695, 69.50208624226106, 20.957425267549354, 6.307690429704799, 46.84460913404239, 16.979362907497375, 7.854042175966771, 48.21054717186146, 7.706399460467852, 31.221028566735818, 15.495781173603543, 10.300758796836847, 109.5488463358393, 28.070429373043424, 14.45248242831636, 68.14690786435753, 6.921359570617301, 88.27362280327561, 35.00382972243209, 21.81001939025224, 9.119146387757654, 69.86614095092324, 29.84463808867485, 6.982605684193964, 9.500665486252966, 107.98202900010833, 15.447734552221794, 18.827484057652196, 135.26666878057932, 14.82481210082372, 80.57798579350452, 5.8855771254941205, 174.4692831359926, 24.39071693639852, 8.872164574386906, 17.735476697358287, 74.72926393528378, 89.66939941056269, 43.05528046673834, 43.71287301798067, 16.114415576645097, 49.769279216598605, 12.999881850610917, 40.56017936296542, 16.806097510270494, 14.890352602581, 20.72460032198608, 14.955905415863182, 38.5291214871311, 77.3788550269656, 21.921604838331966, 87.58983319711757, 35.095855655940944, 6.449792071283222, 23.70880795148404, 16.467268794092142, 22.034515445314195, 80.31306100716175, 66.97234310076207, 9.280702911763127, 130.1751163910214, 86.98291411308576, 22.604353917296507, 82.23903707995143, 74.78447366483533, 17.11970706410748, 9.307147621256222, 43.59136404859739, 26.1670175416064, 22.18783169804675, 101.79746987563172, 36.837012459804754, 49.91574830120661, 76.82080606938474, 22.823312094716705, 55.54991094683023, 48.77186072595075, 30.645256756714033, 46.08369416238393, 32.17833580955962, 14.847169013209868, 17.85178416283785, 84.06592523527979, 30.19313913426008, 41.85436719062335, 41.33373286790895, 11.664018907610556, 12.684628874031471, 16.800787009300485, 30.662491068194466, 17.32200646401344, 20.00877156191862, 13.047316712229946, 30.869617815597294, 46.93894761271779, 64.56051337448775, 9.671886659152127, 27.160343816006804, 81.79457973216012, 10.568254161710287, 10.16073360810281, 151.59289687654876, 72.63654222590498, 16.9623554246384, 37.63079211897125, 50.0333478891658, 41.36223858889033, 5.069395449211955, 157.96882677489435, 156.46107761325243, 19.593300786143494, 33.76063685818949, 5.5128705063741705, 6.602352350085331, 37.7427466195612, 30.7402264529822, 105.95071027865703, 7.31364352454071, 15.838779410930442, 35.95630085709102, 20.01080964830893, 9.983309552452953, 5.261498204873187, 11.798581855757352, 94.18262958754008, 5.181850956220334, 37.55719328125433, 24.93217539975231, 40.34593878790506, 137.57867751426676, 18.042580290131824, 5.400521949357527, 54.62178414152593, 8.163700080102732, 29.397536495875563, 18.689027935433025, 5.652004504747058, 17.539586935643833, 36.38438063592688, 12.025546345170088, 9.282487258140577, 15.489543850970884, 11.21796705301799, 7.837222068339121, 21.91838665475155, 8.595737800049525, 87.82265598478968, 16.790657008921364, 7.167611505001476, 49.9931166010282, 27.32217968944903, 8.178022306946032, 10.120089424746299, 80.85479747970084, 35.210547596068096, 72.69401609481031, 122.2278180048375, 126.33140487220787, 92.4184981427689, 12.271045952054699, 8.864006606410305, 14.60995024642272, 58.53267381893817, 5.436041698660383, 14.206859500857556, 61.11318392357208, 60.35419764394112, 35.11864691075696, 18.27435282360228, 12.711659236164268, 31.045332343795035, 52.82145187389098, 5.782245454556286, 8.535777695025173, 25.812161537693655, 20.006164686190413, 36.92588486042318, 85.90140242926063, 8.482157861597347, 16.400002179411505, 93.41661843658761, 45.80555774937558, 5.654653499507628, 17.452827855134675, 23.98518754230612, 14.360284607605426, 10.805314263957884, 36.070368059466, 103.75514816745996, 31.042876410667915, 72.40215072508155, 25.94775099968509, 40.17707819107736, 14.316954698087477, 7.666194704152477, 20.18433754837639, 173.75672350891762, 32.10811401825738, 16.928109913690456, 65.38905071070825, 23.06113187684355, 26.444606433487355, 8.504417971604825, 7.741373054823158, 10.739040366038, 81.11080871429454, 21.310276771334767, 133.8607606045947, 10.684739378379785, 44.93073456048004, 95.92664778400295, 29.22946362610111, 133.8337391218373, 12.385212429976573, 57.37842377182781, 53.67220224794886, 28.510109868151126, 5.1713374547091675, 15.367103917834589, 30.965427373636963, 92.88325616652936, 9.80417216456237, 18.25020001269731, 42.159655555437816, 8.244230195726375, 36.080335736762315, 14.85553297877952, 58.38128644218092, 56.4685877188502, 5.117295940167971, 19.894544283798382, 70.0393359171369, 10.679687170265451, 82.79368076327182, 71.09383534505284, 144.374864872217, 83.60718837902806, 93.16799947252693, 92.77582085227115, 15.32400197091576, 99.52309389058863, 5.915600616384912, 83.41963992663383, 30.882294517714648, 12.791149725762965, 7.003183563664237, 93.74257770339835, 19.687842737073716, 36.053048904856276, 94.03216009071011, 60.13365109569683, 12.987724859054916, 24.076360840251446, 43.54304161249952, 55.391402753688666, 24.96620563508933, 9.688917625018762, 8.852433704844197, 7.613370897140959, 56.76764829865431, 68.51792062479964, 14.41196933368122, 118.42469324758396, 108.28638615812505, 33.715339727330864, 20.597889697402614, 45.814383102539665, 5.160580172274548, 6.538692240047632, 20.94174112963186, 14.428915190793663, 10.523107074835615, 13.753865992536888, 18.33530541384142, 8.413971585969213, 57.64761111774926, 16.051625812699033, 93.90775022515443, 13.621777156102372, 9.613346663701616, 13.545584358063433, 6.1452971858893255, 9.199442596069574, 64.85919603110831, 28.93397190903593, 61.11357143008011, 82.29016229815485, 149.9645653940834, 35.35094127315259, 36.403160292153764, 46.507043764610614, 74.91818593834907, 52.713811212078745, 29.49064711668045, 57.13981432358486, 27.592171665017652, 97.94535484812687, 43.49561267898525, 102.70677739747394, 159.42397211755244, 12.40108462233335, 18.75940579614054, 7.594138770017267, 21.84715647529286, 26.237567078496358, 26.937691937688385, 53.53364337544013, 12.714819960745523, 16.738276897339688, 14.105766279964765, 5.550799367363554, 6.307334866348133, 92.33813000195573, 7.691400270969171, 23.605456815801226, 40.93032387579888, 94.03586410818951, 59.38792926950566, 19.78821717810962, 31.747631751505597, 14.891053319694024, 74.48323236416745, 17.86876382872308, 14.063910078342143, 69.81595783567613, 67.10346238932816, 30.76564815889758, 22.927910834168717, 38.06824354664466, 48.51218329943375, 14.144096431205266, 14.82941456560614, 16.729349668978244, 38.002074184165764, 48.47798264691604, 9.190320317216942, 9.757772212995814, 14.173316667878861, 5.629495638701609, 33.62581975837744, 7.781721042491776, 5.541810546187338, 15.417076530043232, 42.98193898772583, 21.264542726430708, 64.87426572823802, 40.93723563605513, 35.35945531306763, 22.411048112009535, 7.185028802412687, 32.05813309961526, 67.6892544190159, 90.83142520024798, 40.941060906447056, 25.495589260587057, 5.680487691526383, 14.465566347773526, 30.46555321379841, 8.002348965846979, 31.223487787042338, 19.430150055352897, 75.10030581276935, 74.67555198942321, 6.231317474760666, 12.396329486318706, 74.5386722051869, 26.46452641293342, 72.74143788946196, 144.49385411339765, 21.727807736407296, 28.552255572912024, 5.297476604191032, 10.038309040352832, 6.7926268440213455, 7.492572824395075, 99.54567181298111, 45.59814883803117, 21.076021971030173, 33.59269953820316, 13.050299906731485, 7.800521930252742, 38.121287689160006, 11.507395589352424, 61.247762011534235, 56.88474373336012, 72.81153913423469, 18.759106544239593, 24.667227128716604, 7.5162357239534865, 44.22001932627483, 21.402499908396187, 24.043691743795648, 71.40002950239133, 42.40491175209682, 33.42697504744725, 47.285143834004316, 5.853406001664024, 82.76235051550977, 79.6923212617064, 144.74188221269566, 49.41524642672323, 11.439522783517651, 36.84326252499446, 11.853426004790402, 22.25169454037875, 10.609278028481379, 57.70217255897905, 16.323189110980454, 15.039625977610703, 30.578985104127, 6.940050720034193, 22.028298348170996, 29.754088545280233, 23.72283889903028, 22.373891466895348, 43.770104708902196, 30.315923163166346, 12.129596397941546, 25.53713741287975, 39.3174348865582, 7.714765004787854, 84.46002558207586, 12.350758780030667, 73.1252053876434, 8.481261213735417, 7.948330347304639, 18.63037460582854, 17.738170905252233, 6.657065719008759, 42.94253755224372, 11.898920364782368, 5.334887690828778, 122.30022010095351, 13.154507912490397, 10.258461870306677, 53.72626725275917, 56.8190494430278, 51.559314494774924, 40.903305653399926, 123.68796704049313, 9.746557282599204, 38.80019889031647, 19.428172460593338, 67.29291612952939, 5.178671778554115, 10.562848657749175, 22.180976503565283, 23.044769853715678, 13.21156256731153, 27.206676902952594, 36.37849239042977, 22.23986373808093, 13.406911514231556, 46.779911240159336, 57.69075485219858, 31.29370860454306, 14.758972918012889, 5.91179865830006, 16.371481133266542, 33.18656345070957, 19.96958633955735, 8.342257269741774, 17.992201929848196, 13.39186315306759, 5.747215029509222, 7.106634620667468, 16.24766847953749, 29.685491951811855, 29.93948863494075, 11.638375601621837, ...])
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)