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 = 45351
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);
([3655053.125, 3790720.9070209884, 3810278.125, 3819091.8501053485, 3890143.75, 3896932.8125, 3903564.0625, 3904941.5554843727, 3909315.625, 3912071.875, 3912752.937154916, 3922155.8945134985, 3922592.1875, 3923812.1249259026, 3929232.8125, 3929389.206179856, 3929414.7538153874, 3930632.7938325717, 3930638.3715421795, 3930645.3125, 3932377.5309552387, 3938688.350876838, 3938705.264773558, 3939148.990915058, 3943574.9148002574, 3950030.9084125203, 3955419.787464942, 3956914.951273213, 3960516.8819554355, 3985847.330648978, 3989321.875, 4003418.3467846047, 4006537.002338829, 4008006.25, 4008657.2476552413, 4009714.9947053217, 4009877.677343886, 4009927.015669179, 4010445.198846869, 4010570.3125, 4010710.9375, 4012140.478914171, 4012742.3657387965, 4013789.0625, 4014210.8763559754, 4014482.581470115, 4014485.4242224297, 4015532.8125, 4022734.6140401177, 4023494.305421208, 4024255.6058021504, 4024632.791614013, 4028826.2256348627, 4032649.2489244035, 4033900.7829912123, 4034365.625, 4034397.727917415, 4038719.544290705, 4039386.637629647, 4040060.4298940958, 4040291.188651372, 4040517.640621499, 4040940.3957340317, 4043073.4375, 4043990.625, 4044735.304565332, 4045499.3218998075, 4045740.408420185, 4047180.4538797983, 4047466.6603235165, 4048162.5, 4048737.739929585, 4049751.9205627083, 4051718.4400436254, 4054742.3820266533, 4059482.6972295935, 4063360.9375, 4064419.489197233, 4064792.1875, 4065326.257665491, 4065388.415532887, 4065905.766806231, 4066944.909234376, 4067693.75, 4067895.1044717575, 4067897.4380415143, 4068142.1875, 4070093.75, 4071692.0910423663, 4071703.8618159527, 4076670.0676293075, 4084294.596249474, 4092340.925826921, 4094262.188949271, 4096035.962149922, 4096255.132126725, 4097389.0625, 4097928.59272628, 4098286.020611777, 4098940.836605908, 4100035.9322597263, 4100293.482307201, 4102448.3725285553, 4105789.0625, 4115717.063775559, 4115784.361057725, 4116091.8899773257, 4116095.3125, 4116238.5975769246, 4116418.75, 4116453.125, 4116597.417239011, 4116764.0625, 4116793.6938118953, 4116855.3658008794, 4116901.69589246, 4116930.9054747685, 4117041.52271381, 4117162.8011477212, 4117203.7968294625, 4117362.238995321, 4117607.161172303, 4117898.4375, 4118007.8125, 4118091.7717020446, 4118248.9140758794, 4118262.435005384, 4121364.0625, 4122487.2843473097, 4128147.4563055323, 4131382.6733683236, 4135206.556261498, 4141315.625, 4141413.242672521, 4169560.2408473897, 4174532.5523018287, 4181539.685244477, 4181553.125, 4188971.8050926067, 4190515.625, 4192387.0716874343, 4192898.7005688916, 4200870.3125, 4201114.377694397, 4211721.748707256, 4212194.459332087, 4213453.225618947, 4221415.625, 4222538.801514114, 4223920.211554083, 4223975.363082871, 4223985.9375, 4224245.567491485, 4224353.125, 4225075.023290349, 4225259.676759349, 4225285.132105498, 4225427.707101869, 4226337.016384104, 4233321.414734754, 4240439.0625, 4244420.3125, 4249095.203148094, 4251752.676620978, 4253017.491203171, 4253047.38089691, 4254260.526021313, 4254500.0, 4258673.4375, 4259597.082062257, 4259601.0059331255, 4259605.234274874, 4260189.745631917, 4262139.268509345, 4263571.754481028, 4265940.625, 4267940.471203323, 4268429.712523436, 4269811.462584091, 4272639.5169822015, 4279989.21422277, 4280595.64115479, 4287784.984655982, 4288043.579498594, 4289748.869832344, 4291214.679915638, 4295066.288643855, 4295455.770214954, 4295827.908932188, 4296753.122708745, 4297209.247665499, 4297537.5, 4297742.924922255, 4297996.875, 4298112.112635418, 4298123.54670298, 4298899.666121945, 4299313.730094241, 4299456.410744965, 4299841.784180824, 4300079.6875, 4301201.425374242, 4302624.976201894, 4303729.5926600015, 4303943.75, 4304093.760931115, 4304171.504101938, 4304351.721475531, 4304465.419133152, 4304698.748415715, 4304784.262461744, 4304847.518894907, 4304993.376222914, 4305000.0, 4305037.311231841, 4305087.844187841, 4305173.4375, 4305653.65496653, 4305795.336888269, 4305799.055590591, 4305843.945139126, 4306289.247276141, 4306309.035807185, 4306376.5625, 4306380.457890284, 4306418.9697711365, 4307050.0, 4309875.204657577, 4309892.971045173, 4309896.532131928, 4310460.9375, 4310494.422251315, 4311216.951979988, 4312332.75756868, 4313402.400879053, 4313492.6160127865, 4314172.881809417, 4314179.6875, 4314644.879429289, 4315123.239979097, 4315428.125, 4316139.016327738, 4316143.2042985745, 4316340.866407248, 4318151.518695936, 4318921.639542427, 4320081.25, 4321375.7247715825, 4321814.167466725, 4322527.965509588, 4324245.13115808, 4325039.696561944, 4325733.040647472, 4326843.964599021, 4328967.281185517, 4329796.504614073, 4330220.062559894, 4331223.94911894, 4331247.3249581335, 4331678.125, 4332614.661418607, 4335484.856585454, 4341889.0625, 4341912.734015131, 4342225.0, 4343297.4502486475, 4343642.704401173, 4344632.787604696, 4346459.445939782, 4348767.642632464, 4348824.897692811, 4350254.11345097, 4352364.0625, 4355414.780616127, 4356701.144079399, 4357297.773554883, 4358260.9375, 4358274.955677087, 4358610.571498215, 4360432.053664464, 4361043.75, 4361627.290836672, 4362971.875, 4363202.449192786, 4373416.867462965, 4374729.085392466, 4374816.128229905, 4375167.1875, 4375253.82342847, 4380785.9375, 4381341.186414744, 4382054.564935234, 4382572.728003744, 4383056.915734341, 4383476.5625, 4383735.7033674875, 4383840.625, 4383925.0, 4387565.803989358, 4387665.618098065, 4388257.91913841, 4390361.741790282, 4392841.4412812255, 4392877.863926263, 4392907.8125, 4392995.768890998, 4393204.338217142, 4393338.07982258, 4393339.081409117, 4393590.625, 4393592.102038775, 4393672.957112864, 4393717.626718244, 4393800.0, 4393906.25, 4393931.610609449, 4394008.126790595, 4394035.863423703, 4394085.080854416, 4394096.27885041, 4394175.0, 4394219.320581697, 4394607.723281097, 4394667.1875, 4395092.643301555, 4395216.211972542, 4395309.375, 4395462.1921547875, 4395499.462716471, 4395518.370847722, 4395544.522418851, 4395582.6770793, 4395624.723930127, 4395635.467150711, 4395685.71139335, 4395801.5625, 4395821.6747192005, 4395829.6875, 4395864.0625, 4395903.125, 4395976.5625, 4396120.159278335, 4396294.345571048, 4396296.491974652, 4396385.206310589, 4396411.506302875, 4396468.75, 4396530.996196089, 4396542.1875, 4396547.864921294, 4396550.165344026, 4396953.397601134, 4397029.6875, 4397078.082348077, 4397107.594294734, 4397239.044085475, 4397267.006468952, 4397343.67156205, 4397428.787027929, 4397460.882354579, 4397589.0625, 4397615.625, 4397746.298022186, 4397752.795004777, 4397788.602724727, 4397816.888846383, 4397971.0818776805, 4398218.683581991, 4398233.746795279, 4398331.150908288, 4398391.548279472, 4398509.375, 4398539.181731126, 4399032.909388123, 4399300.58152066, 4399481.25, 4399565.548232115, 4399585.242208252, 4400584.354719061, 4401037.077683414, 4401217.102886928, 4402551.5625, 4402673.698065239, 4402806.788532538, 4403020.749304375, 4403514.0625, 4403531.5568769965, 4403629.248646222, 4403681.25, 4403821.875, 4404145.389457715, 4404444.691766996, 4404693.75, 4404735.660190878, 4404944.730993348, 4405115.625, 4405370.116348378, 4406930.959015745, 4408360.9375, 4408422.833762857, 4408715.125356686, 4412136.712710162, 4412701.719468899, 4413732.436056823, 4415143.75, 4416137.434953094, 4416392.581935961, 4418338.889683759, 4418447.292481603, 4420030.983791887, 4420350.265857293, 4421177.811408151, 4421504.6875, 4422935.9375, 4424265.139000438, 4424400.0, 4424630.513806284, 4426379.6875, 4427017.743107493, 4427079.641765244, 4427692.1875, 4428900.0, 4429609.916961221, 4429884.047859879, 4430721.927365757, 4430886.3369275695, 4431985.016049748, 4435516.907826778, 4437843.53110235, 4437848.901216147, 4438779.6875, 4439299.914633836, 4442361.378272445, 4442579.332113145, 4443009.010973618, 4443565.781423968, 4443585.864412569, 4444825.68766622, 4445031.493810747, 4445056.25, 4445085.857782103, 4445427.049236831, 4446185.9375, 4447295.2820797935, 4448309.648698351, 4448425.416308786, 4449374.901984472, 4449556.590134594, 4450404.6875, 4450594.417523561, 4455951.118699486, 4456135.025669398, 4458248.12748243, 4458471.715612657, 4459298.663722041, 4459978.589433786, 4460204.599237335, 4460373.4375, 4463205.96372424, 4463241.308129848, 4464314.169836434, 4464519.159580129, 4464820.3125, 4465351.980175369, 4466170.3125, 4466295.698738305, 4467059.375, 4467833.639529561, 4469766.999641481, 4472699.608567794, 4473926.011264583, 4477118.905014746, 4478955.115927358, 4479850.659584256, 4480651.5625, 4480835.9375, 4484211.685435569, 4485039.0625, 4485070.3125, 4485096.476817368, 4486649.459258419, 4486835.698628532, 4487690.470415209, 4487917.087053131, 4489515.318049345, 4490340.607073932, 4490509.375, 4491288.0531624565, 4492546.666571174, 4492900.484875348, 4497620.3125, 4497687.068859411, 4500396.70877578, 4500802.507042047, 4502129.481304927, 4502369.540840375, 4503963.566875351, 4509110.676704847, 4509132.8125, 4509420.3125, 4510306.25, 4510471.381201056, 4510720.046323489, 4511415.625, 4514217.1875, 4517554.6875, 4518503.254096698, 4527128.773290837, 4528487.5, 4529232.169512742, 4529465.862700659, 4529568.307311594, 4529725.18384392, 4529893.838590416, 4530163.750451009, 4530254.6875, 4530446.875, 4530695.3125, 4530774.935562774, 4530835.367549162, 4530903.114533853, 4530921.737040359, 4531048.394428279, 4531328.089713998, 4531340.899774952, 4531360.3627212085, 4531545.506685329, 4531550.0, 4531581.8064802885, 4531703.196035526, 4531773.9554870855, 4531793.75, 4531806.25, 4531930.195654248, 4531944.319297612, 4531945.7586225625, 4532579.6875, 4532709.802040875, 4532780.572142136, 4532873.4375, 4532894.783968246, 4533067.1875, 4533232.8125, 4533353.850759622, 4533377.229651694, 4534490.531141364, 4534592.118925302, 4534684.009369205, 4534989.607496903, 4535321.875, 4535545.701426532, 4536415.938697415, 4536695.51616832, 4537735.628158994, 4538807.118207685, 4543085.9375, 4543183.971789165, 4544384.375, 4544573.136025906, 4547012.200231274, 4547185.742085462, 4547400.0, 4548671.392221892, 4548681.218244598, 4550619.710095845, 4552182.905612615, 4552907.50979268, 4553203.581435444, 4554165.779428931, 4562413.178797712, 4563232.416476666, 4563527.631651609, 4564515.349395588, 4567514.0625, 4570159.922213762, 4572323.4375, 4573014.668880328, 4573562.112171618, 4574213.75607293, 4576185.4146490125, 4579190.625, 4580592.114198371, 4581123.4375, 4581480.772772523, 4581593.535188984, 4581595.3125, 4583301.5625, 4583596.875, 4584832.8125, 4584941.8988376, 4589661.662603251, 4590885.470187881, 4592736.333666619, 4593396.875, 4593662.426775458, 4593815.209655068, 4594600.556792485, 4594960.9375, 4595213.599761273, 4595743.651950754, 4596634.03893486, 4596776.741483507, 4596829.157515251, 4599312.26058164, 4603611.153178249, 4604697.16013225, 4605699.973643394, 4606387.859298308, 4607297.156884569, 4607548.4375, 4607732.412632194, 4609809.275831021, 4610307.352452756, 4612146.975034459, 4612327.188837477, 4612837.104440099, 4612928.125, 4615982.005493211, 4616338.390666986, 4616559.27676706, 4618425.1390748015, 4619296.875, 4619922.100935762, 4620638.8277066015, 4620643.824116788, 4621503.9161972115, 4621869.855856315, 4621943.903082619, 4622176.722194239, 4622470.748674531, 4622760.111187375, 4623130.3047963185, 4623135.113056483, 4623448.4375, 4624041.579452486, 4624075.0, 4624076.062264652, 4624239.0625, 4624313.590643151, 4624755.730304467, 4625040.95739796, 4625133.706468949, 4625134.3043659255, 4625138.271920602, 4625193.321305915, 4625242.102082534, 4625368.75, 4625529.984418699, 4625789.4793832125, 4625924.862254143, 4625935.28078355, 4626015.625, 4626041.789076946, 4626071.736725499, 4626207.720969535, 4626246.012492786, 4626345.02044031, 4626499.757740222, 4626584.375, 4626635.379835914, 4626667.171824254, 4626780.213185343, 4626785.9375, 4626794.909478633, 4626994.56563516, 4627018.706540524, 4627176.138579239, 4627354.658161329, 4627514.350183382, 4627530.429233826, 4627537.5269872, 4627565.625, 4628141.431487585, 4628180.226228751, 4628247.996268739, 4628375.0, 4628384.375, 4628445.144150718, 4628494.886110454, 4628606.25, 4628617.1875, 4628808.509128113, 4628812.255921757, 4628867.520864236, 4629001.172690076, 4629066.6495627705, 4629078.125, 4629378.595608969, 4629937.4122660225, 4630681.25, 4632257.946022467, 4632276.281864069, 4632501.244354461, 4633690.625, 4633956.419282986, 4635849.176261011, 4638116.288972959, 4640328.09070231, 4641249.325346412, 4641293.659889099, 4641441.979916909, 4642189.938885332, 4642268.08115438, 4642474.784923405, 4642625.7656548675, 4642767.2445551725, 4642996.956409141, 4643350.0, 4644109.375, 4644157.1904826285, 4644286.95733519, 4644457.631114853, 4644872.992449769, 4645152.930661849, 4645771.875, 4646133.701946942, 4646242.1875, 4646754.6875, 4646795.6128007425, 4646823.876100656, 4647343.406537229, 4648836.172103359, 4648858.736178807, 4648879.575076381, 4648983.877445794, 4649141.783859106, 4649185.908268496, 4650956.280129294, 4651089.954474335, 4651140.439303164, 4651140.660087529, 4652617.1875, 4653398.4375, 4656289.0625, 4656458.582235693, 4656891.76880838, 4659553.037809023, 4660882.8125, 4666158.245102579, 4666956.9328664765, 4671479.705917938, 4680883.158347579, 4682808.171176965, 4683065.191763955, 4683695.3125, 4685417.1875, 4685855.311454501, 4687367.1875, 4687403.125, 4687406.983772382, 4687531.92417389, 4687734.2220365945, 4687943.981102917, 4688127.783790008, 4688206.25, 4688810.881588049, 4690070.3125, 4692451.64880667, 4694128.9912848985, 4696748.541845414, 4697175.89024363, 4697688.304035394, 4697945.710009263, 4699220.3125, 4699259.7912870785, 4699314.659348063, 4700906.086666182, 4701346.22622348, 4701361.458454058, 4701420.399056942, 4701424.2752106525, 4703324.695304565, 4703377.27093183, 4703440.625, 4703486.5428937245, 4703571.700023002, 4703735.494575269, 4703751.56097523, 4703757.536457954, 4703956.560834728, 4704020.3125, 4704159.375, 4704337.328397445, 4704343.585496777, 4704462.676689482, 4704578.582264489, 4705232.8125, 4705253.244424262, 4705392.5613889545, 4705941.481852855, 4705953.255615827, 4706027.227061485, 4706450.910371356, 4706530.500834225, 4706724.970021486, 4706826.743423988, 4707327.838772352, 4708084.245995758, 4708443.75, 4708510.9375, 4708526.5625, 4708528.624464791, 4708537.023816093, 4708538.851214374, 4708552.738183583, 4708698.4375, 4709032.8125, 4709036.441401863, 4709350.570431729, 4709413.931049893, 4709451.345984034, 4709573.76634046, 4710276.5625, 4710284.235300767, 4710481.25, 4710645.3125, 4710660.07236572, 4712531.80121339, 4712667.443992915, 4713086.591732333, 4713188.773980056, 4713206.25, 4713367.1875, 4714075.02319893, 4714079.154819628, 4714309.375, 4714406.938646398, 4714514.0625, 4714598.133906883, 4714795.052961818, 4714856.853358471, 4715137.335114603, 4715150.0, 4715205.524731733, 4715226.317962832, 4715257.118564625, 4715322.410748897, 4715354.6875, 4715372.856132382, 4715508.684974525, 4716283.67764945, 4716331.25, 4716361.197645866, 4716914.5141839525, 4716993.75, 4717040.465023909, 4717322.4674370205, 4717445.779148666, 4717635.503578859, 4717673.253556231, 4718497.440163191, 4718502.640531483, 4718546.8189077275, 4719023.837926639, 4719029.988268416, 4719139.0625, 4723836.473897442, 4724179.6875, 4724230.491621309, 4724231.950522674, 4724250.826643299, 4724919.175916756, 4725228.125, 4725640.489046063, 4726071.954147416, 4726601.5625, 4729894.610960424, 4729896.730706039, 4731118.75, 4731139.0625, 4735063.853262089, 4735067.02977407, 4735864.209980137, 4736915.231929212, 4737591.456391673, 4740182.861196518, 4740971.875, 4742736.334419399, 4743190.545154647, 4743904.6875, 4744104.053018459, 4744937.31772275, 4745326.515677143, 4745367.421046186, 4745518.75, 4745646.875, 4745971.067201765, 4745976.49065899, 4746056.33364192, 4746250.635420228, 4746301.338695134, 4746507.8125, 4746644.577779188, 4746832.841825035, 4746913.847026348, 4746933.957250831, 4746996.431812671, 4747282.421881826, 4748017.1875, 4748179.6875, 4749935.520389164, 4750483.511872166, 4750566.3243347965, 4752676.025281601, 4757172.758142638, 4757261.390743221, 4762554.761395418, 4767576.445377996, 4775649.358147752, 4784243.235122898, 4785643.75, 4786788.356229741, 4787492.436164061, 4792573.4375, 4801898.817978834, 4823025.0, 4823167.885087628, 4827533.556823186, 4835489.741512074, 4836413.472339579, 4862669.962206846, 4869103.904053644, 4872984.375, 4873617.1875, 4874759.370768874, 4875736.837388563, 4875806.131778305, 4876069.277475238, 4878007.8125, 4879570.007977592, 4880870.815823396, 4881948.198740762, 4882620.698023904, 4882621.083923785, 4883421.525365883, 4888754.749770322, 4898816.985436275, 4901765.625, 4903071.119184256, 4903353.002699918, 4903447.488146774, 4904131.117285669, 4904207.8125, 4904362.521858495, 4904684.342216097, 4904870.191668913, 4905160.369591696, 4905546.543233373, 4906825.0, 4906930.440395187, 4909275.979870328, 4909793.6602467345, 4911220.3125, 4912466.643791173, 4912710.167468235, 4916046.109934294, 4916728.058938699, 4920236.635131918, 4928554.750202625, 4930897.921100969, 4930958.730343673, 4947020.3125, 4951218.75, 4955633.608430749, 4955923.043827698, 4958131.218917335, 4960253.125, 4963177.399810687, 4964098.4375, 4976563.432042061, 4987063.636145441, 4989415.286248312, 4992714.44218045, 5003450.955401119, 5005235.9375, 5015042.964394069, 5022958.042902326, 5027565.4549980955, 5035560.398071579, 5037129.6875, 5037304.0598461665, 5037886.597090605, 5038413.031379948, 5039175.272313287, 5041044.7561976295, 5041064.0625, 5041606.179199151, 5041892.970913383, 5044879.6875, 5061110.859877855, 5065475.0, 5070195.839033879, 5070409.145266534, 5071034.964865517, 5071076.289851718, 5071137.298236155, 5071221.980344192, 5071647.847922835, 5071668.405844358, 5071957.715237482, ...], [71.60449912030982, 48.236405684971395, 83.75665434929955, 7.035498064652902, 60.67075153531164, 49.70796360154537, 92.29162342433143, 12.978465809291949, 52.54196340586645, 93.58234264919754, 7.072933122740124, 6.432773013793146, 32.55407541390798, 58.05561339260386, 41.43638616976127, 104.64147487666285, 53.68720127867738, 100.33584517468367, 5.664150843338163, 34.86449777063488, 68.42652255786217, 19.37003926065666, 14.029685526615573, 17.574587316976, 18.68237165358996, 6.434845188119896, 65.79896983672944, 12.874165959785609, 5.063381942488969, 11.923355376916822, 44.022248060372974, 13.844660519687356, 13.33245610426963, 78.75234885203345, 26.539742062403317, 20.28487413053443, 22.031648934934854, 17.004833940657065, 111.42413982552155, 55.24990612044148, 36.47263521303008, 23.118193222425454, 122.99537435500169, 53.85523027200803, 11.033461049995788, 10.78482429693864, 14.38342162008254, 42.35319064531698, 24.851437366247662, 8.603886812601397, 20.165922744688764, 14.862494944785494, 78.30098116542344, 82.935776748894, 21.227429520975925, 51.41984538574612, 33.93595183138798, 10.107352947622916, 10.002998272128142, 28.895999693734325, 17.635663036848154, 6.136522431217377, 8.16894793954509, 80.82255131075976, 79.582220910303, 8.848013078463964, 8.817070722421464, 73.8034409353641, 20.576613115498148, 6.407509572208795, 85.40185663717769, 9.542865780780431, 11.737647186222873, 8.129197558016362, 103.23467817270986, 5.805500190944699, 67.8432585833731, 64.86339739964359, 94.5434464435083, 7.043560997787996, 10.247518568830786, 29.734299723271853, 13.599023584679697, 78.69301148575354, 25.001223246375837, 17.632008490088282, 62.77943524248568, 75.27974445180595, 98.91622786644513, 40.35598037696864, 15.798562793997359, 50.323182361144255, 11.632896495514798, 10.673995767493357, 11.166456052652746, 31.501460800825676, 29.335056987137452, 18.74340216665506, 15.268046496424905, 15.814440282669457, 5.9389493009167555, 14.010739251063903, 39.61933891467081, 52.89254038769195, 26.29782869625191, 28.251898943695757, 23.78243772569387, 55.8956810971688, 8.055123832703668, 93.93473219311619, 90.02589505154162, 55.94618739564745, 49.60093341931633, 27.460145800583184, 7.868486839482861, 34.10466810515625, 47.14709249345988, 18.26437740047907, 11.633475348225883, 64.90660282236992, 6.234776045003489, 12.929860459326331, 52.26644610292936, 90.20024746524714, 44.409140265191525, 71.79477377177409, 89.81348678305133, 37.44087461460499, 24.891467458101257, 17.74233260667206, 26.04884980982006, 11.642715071521705, 47.48631882946494, 6.610174269570624, 40.44664403017251, 14.034569607505766, 54.58712698162709, 46.17325967658648, 27.214181531782007, 64.23874061626634, 136.56215177152444, 16.048907245925356, 61.759863734137454, 5.254053410490655, 90.06414962090494, 5.5685263572881585, 13.698977607442684, 71.3391920950575, 126.7790684720986, 26.67656853437977, 5.412538147355581, 74.07384872969457, 6.527820349956833, 45.620846907181885, 15.031030675839869, 33.189003975420334, 26.752816962718583, 44.87827267788804, 49.724650614047206, 13.32865759512694, 46.14791506610619, 71.07532656064814, 26.535290410652934, 5.511707938656483, 5.726363004512514, 5.739729284510998, 9.006131526524607, 85.94008366749784, 58.37283911593721, 44.28546912219846, 71.33343227252432, 17.535267254766463, 6.357545736320333, 98.54800260249047, 10.944412157108713, 87.42178848143767, 25.817053365892583, 15.453479812156008, 19.16652783553363, 25.697324672686307, 16.44786596543256, 6.12295651044182, 12.236173923202129, 48.37635896510039, 26.09374332355018, 17.330398928479493, 43.22935870189961, 8.956191729965171, 24.885525133354697, 73.37942812640432, 74.65125386572352, 35.52870254621876, 34.50351358204221, 50.128947844327456, 75.66493263945347, 24.216403612590582, 76.86113739967875, 23.34544442577195, 11.388614154101827, 33.67838885927483, 53.8442923297434, 26.08094505224845, 11.090711465834792, 14.591939190717843, 39.26946391175299, 5.814789517934782, 10.59356589981604, 100.02709433678375, 22.22003920625829, 51.45297612680213, 43.37502223783653, 42.225059861192264, 7.026545237898945, 29.846040120188672, 67.60741638530504, 22.711005511164892, 30.254788981323905, 6.33656119482912, 15.035288072588152, 24.710960020973005, 70.15919441438466, 5.955660111037801, 9.060170288295318, 42.671852289308234, 6.92771456134321, 100.58629363643637, 80.1423374756106, 54.36846460812989, 12.62189692819996, 13.778030493976193, 63.75350995329541, 12.370815966903423, 5.333915529883779, 8.2577407814889, 19.51512775501241, 16.87213385694066, 50.42713835794721, 100.76939706222113, 75.30205542379255, 7.533326566397484, 110.39809494648932, 71.69403178679711, 21.049004843869035, 7.692948247083831, 14.777136626445161, 7.520240287643902, 63.95726445464465, 7.325962155728394, 15.357278520113141, 20.666787938729176, 113.75578388576207, 7.298737090892105, 8.411026486402884, 15.827819588484424, 9.411896109199704, 13.695622228190446, 7.51527274072397, 6.33407665760364, 11.912270098149875, 140.99571233288688, 119.115163158335, 17.161297396372305, 62.44517646344415, 11.51430993438856, 69.09156201263386, 12.164068502854123, 12.044755967758217, 28.041461473905883, 11.240430710492218, 6.326466152423003, 5.338428168837022, 20.784912519803363, 88.80884247054622, 7.885401350674458, 22.34742143548857, 8.826722430588022, 157.40455085339732, 35.98066376729875, 22.942747945540702, 7.922298102016175, 65.93986910304076, 6.363823462703341, 58.46188597263183, 19.90197530654856, 30.71630259912299, 5.272843976693748, 12.017324195182214, 76.26064369786067, 8.694012904503175, 70.6653935870829, 12.135447257163918, 6.25183639721314, 10.174390173250908, 19.50258330691706, 41.056858030383005, 10.815659128222865, 34.72163483855933, 32.26472225456584, 9.487477724280634, 28.389146976899177, 46.7528068571894, 20.94315324880325, 19.34452729423478, 27.34263326930821, 89.96255392041309, 11.924803160853994, 85.08680062677634, 12.173577872348147, 5.815380704967652, 89.08153590171304, 23.093416928200156, 43.62119751691696, 9.732617586549038, 86.72630829776965, 68.50016813400265, 11.742378068542612, 8.460079437078114, 27.001258879710434, 12.445006695887589, 13.505148804566314, 33.40836710054416, 19.955909248307933, 6.473195747776643, 34.99234838380047, 11.923653030184965, 17.776937422691965, 71.8673564079877, 29.969867041457302, 13.225082045488998, 33.67484406241259, 19.06147394790365, 120.33781609862793, 24.06130563275201, 21.79407061933586, 5.389899969433032, 77.15924151469905, 153.36706152844812, 88.49819470169206, 76.89268830244217, 57.91562069313635, 55.477743502011926, 74.85466309723692, 92.58779197974812, 185.40442656125785, 12.734534853355074, 12.150706619241546, 69.61048508879314, 24.35933050782021, 62.56671709033706, 13.1315702209409, 9.4752366938854, 12.834438766121647, 65.7663443808398, 27.70806625617614, 105.30845693270913, 49.93623001334016, 133.49611840541215, 11.0072773509886, 18.25270097780903, 11.181843381972499, 61.73093822298455, 89.16655926128587, 20.758102281975496, 23.375009403346144, 27.867008932962193, 6.057582913016352, 12.589066577698635, 14.694257221060111, 20.302909926588093, 9.24899782500758, 20.208302765351082, 68.56339551093981, 5.714388445813252, 11.282603263497023, 7.828036743119256, 38.63004554934182, 73.34415900841448, 10.190843195757738, 28.12966286124876, 7.457315688826492, 14.62852206724899, 75.17724948994172, 11.56097010302058, 120.33201892837444, 22.163624245955134, 107.63694175095961, 8.455811471183122, 22.125551709996095, 121.52046120328934, 80.05617336372121, 15.243180081269676, 7.393165928708897, 34.247123935132436, 10.720259850879906, 10.326064140449112, 38.580090487500115, 10.834352808541633, 27.78633532550853, 67.26516026687085, 26.26153810195802, 5.586988016444204, 128.27803468710954, 8.371366832751141, 9.032167766176856, 38.45797137010939, 11.027533987593555, 16.693244113289296, 93.11026137303196, 16.813660224157072, 24.19220129302591, 11.57034316343637, 82.4358851425763, 81.8561234503272, 47.42007130333863, 24.726374721054327, 117.4631343086904, 16.71703113346883, 84.62461608535143, 79.88857194069392, 8.262539197677667, 123.29483456038142, 58.918773878320394, 86.93026633408758, 30.94171475071451, 24.617273485240514, 28.96492074825076, 46.373862765430204, 45.31096626799003, 24.84510836118165, 26.86237173915304, 93.53895159772749, 26.943226749298013, 16.51302914091622, 6.051905709512221, 6.692944358725471, 28.092681806513436, 14.741000221306628, 18.42303005797691, 95.43967977974981, 139.42814983083008, 41.800258203653385, 29.447190560621912, 35.00419886905045, 78.86212772197057, 15.243731238991337, 9.710103786622396, 33.64560217036664, 27.850860504512305, 93.06938879120933, 7.863936057408808, 7.009480282470017, 12.32387805411242, 23.62361894757762, 11.189424029318818, 98.99979018596218, 79.02619748513972, 76.40507952030136, 58.707678696150325, 23.927647233110925, 18.39258953338785, 15.36704147090292, 23.729062696057202, 83.21516766215535, 35.709867035906186, 82.18873899893678, 19.921096491094648, 78.30242578931278, 12.72431476449139, 13.189161718763765, 42.76677141423342, 42.18741049625165, 6.5116688397326925, 77.82029692146116, 9.95921698546294, 85.88111979518831, 64.67536505674067, 10.055503520776911, 93.97600118706691, 51.94607680236601, 91.169759663946, 21.096085966174044, 91.04490782319367, 19.584635880733707, 10.974249580783145, 87.32450451688402, 18.99468536718482, 37.096569096575706, 14.384549016974058, 24.995427586818234, 6.864329303130617, 40.38874377255661, 27.811741207287064, 14.343657275457677, 103.00655694265112, 25.02778716943249, 8.75430557876366, 26.549604598575755, 9.120209782933854, 45.5423988262793, 73.56403452142072, 54.33396527846054, 23.00574094663545, 24.192623551809035, 39.30517529099003, 77.51042665196707, 49.320631346849474, 121.31625426161625, 18.16312188087939, 75.04327417731143, 100.1684098971022, 73.76375270770976, 8.983180335270886, 49.17812807147632, 11.269061485925418, 125.37286007386652, 33.09752964691254, 98.7121752635386, 47.709358773825585, 8.252793274521512, 22.02997812826062, 100.70587615042048, 31.783779230515925, 27.70029764317119, 27.845222618450887, 29.295705791183508, 74.67240790223256, 6.8029034338576455, 209.5877423885029, 43.69166552833496, 11.240585376962649, 133.4239507940127, 59.71217623903024, 30.330034227844887, 17.311125346898503, 5.5613633558427376, 34.586289644687035, 51.14286633478617, 16.864299943721036, 51.282139381983484, 57.27536056380268, 6.407312571949419, 44.313288944799105, 55.59893236634861, 104.31412674335819, 53.54747337756851, 32.214600621184914, 9.274084767143988, 85.75901618676163, 66.79641207216604, 31.30495282457598, 53.336493062326326, 16.289111463765337, 9.509765622208533, 33.244192265069245, 5.764334604220562, 72.3414763416263, 75.78312862499527, 60.53500852694156, 52.884719526756626, 62.53192187786475, 10.835407707744878, 97.37224177232795, 5.587882582013758, 16.978575451668018, 5.188341423173752, 13.73272074845735, 30.649106467045243, 26.509872652375208, 15.564709305440937, 5.112054566150247, 22.597063904080855, 13.344300217020606, 39.73390655018002, 50.03261569574147, 5.308294968073635, 103.46667223263732, 22.59918859612842, 265.03984223635916, 23.66899043944071, 21.26813837806509, 91.51689175180886, 14.66928955834212, 68.30731259567875, 21.72331653780976, 24.90352629112855, 58.978365149171324, 62.80821507837001, 53.64325430368406, 63.61035534300964, 13.944681076243139, 5.754513682529026, 5.588704055910953, 77.53051843021505, 43.51246957967126, 9.270245764714335, 27.98586222381087, 12.12593076422102, 47.312139015848274, 30.089331560237184, 26.725669937762568, 20.391047267648847, 11.41948925304226, 6.2024829180719045, 10.773024755718481, 15.832651422814905, 23.564209979229464, 179.30140315484218, 71.07382751332898, 8.441488341221898, 36.18086450837082, 104.85668151535859, 14.576532161058678, 13.436815499489896, 68.63784843314605, 6.895342031582248, 30.178530856902505, 122.74496117877108, 135.7335902433857, 121.54181678458625, 14.579859640977055, 8.361517648870857, 53.33574917393844, 11.500230320909024, 14.116228918453485, 6.77839417132933, 10.103863536051133, 5.442502384948822, 7.162282373461346, 15.587251312636582, 17.300351069270427, 84.11220041097215, 6.893337194963136, 31.95089960588544, 56.13069532259837, 5.770319349817537, 43.69414277179726, 21.49075283590077, 54.826112331986636, 21.778513520837777, 10.402171311070008, 16.38034584160181, 18.621639696087023, 12.726709620672533, 19.013373741771296, 52.318189749944366, 123.17813835446367, 53.99378942900426, 9.595751451836911, 11.848478812159211, 26.07101318021471, 84.08518154030753, 40.146419661315875, 13.61312536856117, 32.97268822703266, 7.570464783616529, 8.69501982189049, 89.314000420428, 14.09208718057394, 30.411766002901782, 13.170844227839904, 32.96221906237601, 6.87319865547961, 79.98302474615441, 13.599733842737848, 10.616690442289922, 38.527375804850216, 13.53935320738842, 27.957144478963688, 23.95761287493152, 30.19166102098964, 31.4064534319466, 41.525760029964616, 61.12297087207409, 61.21426805329824, 8.984246877910179, 33.32558656753421, 54.95767254479306, 7.077889934123811, 5.680148371823294, 90.29253492964637, 51.20351082746254, 12.424500259504489, 9.133210090570948, 29.55971145379076, 10.568572703354553, 30.054720060707176, 47.64231052626945, 8.552176169469783, 14.61733059443425, 65.08381456194853, 15.476088206859503, 59.3334189946835, 84.03254302194358, 49.9454183000932, 7.166673551421309, 6.609489122865574, 8.671951999915334, 27.863747970853375, 130.021587195785, 30.7369469418425, 25.007667537788492, 27.981249230669444, 22.324573021518418, 94.24116824476512, 12.580482817782373, 15.16352974251975, 5.537044672425629, 94.81592939422895, 87.9006844117703, 32.71593026982859, 13.21069649401854, 25.39413631089287, 26.058779067805528, 55.60415451938852, 47.865938785636494, 37.69107238354359, 72.83153791554193, 57.73570928648633, 11.63194725696997, 121.35686317943708, 10.630181763935266, 26.55817015686209, 34.9947045923375, 5.929674432610857, 27.214461135918967, 68.89026816802973, 89.30380842683871, 9.357009794058156, 6.955682036375023, 8.190759706700334, 18.530146337062362, 42.94605501499787, 44.88268362285402, 76.37413707193372, 23.603832280662836, 17.894188387062684, 5.807556924747042, 61.86256266459077, 8.529407819476953, 12.394105567626415, 11.15661777770811, 56.205985397952524, 5.971262015798721, 27.38879364581995, 106.00786888545379, 59.0849088638757, 7.295734174455219, 31.505511747536833, 67.0105368027872, 18.74006558078985, 18.332876761652837, 10.896746233480341, 8.412690081320465, 46.69394989355031, 95.57215056319636, 90.34379952600528, 37.35529319392587, 11.265343695213033, 12.81897114261447, 15.354721641694143, 5.319401819143447, 27.67137742535006, 6.8455487365407555, 32.69445834755899, 43.23839214993987, 13.29905626391165, 62.29704518349993, 93.20721574322836, 16.200744112453485, 11.26575092901007, 7.93719642676315, 23.69094870480677, 18.564074028980787, 40.311975636114994, 27.29625979597084, 43.80168716200622, 88.42655472104587, 6.763202198207054, 52.758312440611675, 14.378666769669698, 88.03716974606641, 84.57150606674774, 25.542179450503152, 43.919016051278554, 83.1060288834774, 17.027147341075175, 29.7559372918148, 11.319650404002074, 6.547343569456466, 128.83533736917562, 46.46278156949296, 70.27498652476649, 6.389502895352621, 40.86835052193478, 14.8284633710809, 118.84956892769699, 41.12044107073417, 31.261445611398518, 52.15671511625983, 53.70998292573853, 56.719590394445056, 12.00980364835436, 21.734014532138488, 22.79819805253976, 22.701703832111072, 92.14338268615485, 73.99262291796006, 6.333033493360074, 17.676429755894507, 80.65962728536108, 24.879113824319045, 50.847437302681406, 57.942307877289004, 57.27265394877479, 49.622443924720315, 84.33232755686558, 18.48856124905642, 8.601291385732777, 7.190548619899226, 12.33158915225432, 51.56718258639441, 47.390314699875105, 99.21427351750633, 11.164162874058182, 30.07654798908753, 104.66626640594802, 9.990529502445117, 78.58243243063721, 23.704952815875693, 22.31554130391772, 60.905263863005686, 14.348203174204148, 64.6982629338758, 27.59807729980922, 24.486034506663188, 19.754533910824104, 5.217289483378933, 35.06507792897401, 20.718081046684198, 29.775718616093698, 31.142254148615024, 56.62178556153489, 29.010011810324833, 16.99676101974191, 56.99349206638554, 10.886533746010121, 22.173093958970306, 9.759823686484955, 8.989604842289774, 5.800494221644793, 17.64473120976763, 13.36878534336758, 19.8651793466451, 5.355832660999328, 6.535296062119492, 75.16414812394343, 55.16277612803221, 57.048090612404664, 5.75991974059875, 46.041858157913154, 15.28887847706092, 59.355527709409294, 45.39101553241628, 26.099738482364305, 9.399235603944009, 109.56877110787002, 5.8805541686288825, 63.079175837381406, 99.75597857089531, 52.69918870876125, 97.93371699159995, 25.75578547713128, 15.535097801573288, 13.62876144950412, 10.149533635903106, 15.13042407901797, 37.78950183830039, 9.691195528695483, 27.039253287722865, 85.99109875500454, 65.70062423925287, 61.42330733568011, 55.282689555696194, 9.537008176615776, 71.21710192918353, 67.99180010476204, 54.86537508911603, 11.017241193404711, 126.69312946088063, 25.913087614285487, 29.769818670638713, 56.91097356278649, 12.726102551958261, 8.302146013417028, 62.62269104070843, 14.488682602936677, 6.678139639056464, 22.658350472246802, 45.92764541826167, 71.14884520840083, 22.361832162276887, 5.867605863570983, 18.501939129542205, 56.38032037745799, 20.32955801336058, 6.136535798892145, 9.394677418570522, 7.091000470431717, 23.63083754309499, 108.89988928967315, 48.60014930853202, 12.79452220700954, 73.06853602057748, 42.06474668304497, 8.498579219596431, 45.10234844639481, 12.426628048889818, 19.09117357514445, 18.365071625222964, 147.35144425028133, 13.755651832302375, 63.72816281362408, 138.72055630980088, 58.93658703513835, 28.441626150153606, 111.29822917704087, 70.52228631295908, 5.217071952704022, 51.59476773878694, 19.430871064579126, 38.96003795491185, 6.237496892713679, 5.552088427195318, 26.872457360145688, 23.136784323371348, 9.38461718051293, 104.03551642236232, 35.44474748588613, 126.4020557486123, 26.32113480870318, 6.892418103372839, 53.37382774682889, 111.77912434385857, 114.99147470967083, 26.46139025523611, 120.15064517357368, 33.593130148659085, 23.353274367864444, 63.506418841313504, 10.061006430859049, 40.008592097639415, 56.5168763211253, 64.29991518193688, 10.3723754665279, 102.71502875781972, 51.60521051574281, 23.770660168512066, 18.490368318499254, 38.11277837116099, 21.3310562456867, 10.250256173243828, 55.1192075640511, 123.64405501121523, 88.01982089336542, 150.4710656556333, 25.045995169220117, 89.24867170558954, 7.360442556269, 65.67343536575191, 5.227836155374361, 48.076866952291105, 35.28821224047104, 9.674495744469981, 17.847142086971246, 61.41666824246701, 7.9106699021697136, 5.721580024678274, 10.87198837737728, 29.196385366961493, 68.00829785408303, 10.270477381082966, 18.2367226625431, 147.47344521305874, 16.092043641270454, 7.41370583684004, 76.97954562713679, 27.198344694513878, 8.749398368176177, 83.93711473868954, 85.40345059012203, 48.182378474313715, 162.2061085568727, 6.718492675410379, 17.794671944134006, 27.572312526194416, 25.092281770381604, 5.206114101345783, 20.643756912073805, 72.62133377042623, 133.28517007903903, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3655053.125, 3790720.9070209884, 3810278.125, 3819091.8501053485, 3890143.75, 3896932.8125, 3903564.0625, 3904941.5554843727, 3909315.625, 3912071.875, 3912752.937154916, 3922155.8945134985, 3922592.1875, 3923812.1249259026, 3929232.8125, 3929389.206179856, 3929414.7538153874, 3930632.7938325717, 3930638.3715421795, 3930645.3125, 3932377.5309552387, 3938688.350876838, 3938705.264773558, 3939148.990915058, 3943574.9148002574, 3950030.9084125203, 3955419.787464942, 3956914.951273213, 3960516.8819554355, 3985847.330648978, 3989321.875, 4003418.3467846047, 4006537.002338829, 4008006.25, 4008657.2476552413, 4009714.9947053217, 4009877.677343886, 4009927.015669179, 4010445.198846869, 4010570.3125, 4010710.9375, 4012140.478914171, 4012742.3657387965, 4013789.0625, 4014210.8763559754, 4014482.581470115, 4014485.4242224297, 4015532.8125, 4022734.6140401177, 4023494.305421208, 4024255.6058021504, 4024632.791614013, 4028826.2256348627, 4032649.2489244035, 4033900.7829912123, 4034365.625, 4034397.727917415, 4038719.544290705, 4039386.637629647, 4040060.4298940958, 4040291.188651372, 4040517.640621499, 4040940.3957340317, 4043073.4375, 4043990.625, 4044735.304565332, 4045499.3218998075, 4045740.408420185, 4047180.4538797983, 4047466.6603235165, 4048162.5, 4048737.739929585, 4049751.9205627083, 4051718.4400436254, 4054742.3820266533, 4059482.6972295935, 4063360.9375, 4064419.489197233, 4064792.1875, 4065326.257665491, 4065388.415532887, 4065905.766806231, 4066944.909234376, 4067693.75, 4067895.1044717575, 4067897.4380415143, 4068142.1875, 4070093.75, 4071692.0910423663, 4071703.8618159527, 4076670.0676293075, 4084294.596249474, 4092340.925826921, 4094262.188949271, 4096035.962149922, 4096255.132126725, 4097389.0625, 4097928.59272628, 4098286.020611777, 4098940.836605908, 4100035.9322597263, 4100293.482307201, 4102448.3725285553, 4105789.0625, 4115717.063775559, 4115784.361057725, 4116091.8899773257, 4116095.3125, 4116238.5975769246, 4116418.75, 4116453.125, 4116597.417239011, 4116764.0625, 4116793.6938118953, 4116855.3658008794, 4116901.69589246, 4116930.9054747685, 4117041.52271381, 4117162.8011477212, 4117203.7968294625, 4117362.238995321, 4117607.161172303, 4117898.4375, 4118007.8125, 4118091.7717020446, 4118248.9140758794, 4118262.435005384, 4121364.0625, 4122487.2843473097, 4128147.4563055323, 4131382.6733683236, 4135206.556261498, 4141315.625, 4141413.242672521, 4169560.2408473897, 4174532.5523018287, 4181539.685244477, 4181553.125, 4188971.8050926067, 4190515.625, 4192387.0716874343, 4192898.7005688916, 4200870.3125, 4201114.377694397, 4211721.748707256, 4212194.459332087, 4213453.225618947, 4221415.625, 4222538.801514114, 4223920.211554083, 4223975.363082871, 4223985.9375, 4224245.567491485, 4224353.125, 4225075.023290349, 4225259.676759349, 4225285.132105498, 4225427.707101869, 4226337.016384104, 4233321.414734754, 4240439.0625, 4244420.3125, 4249095.203148094, 4251752.676620978, 4253017.491203171, 4253047.38089691, 4254260.526021313, 4254500.0, 4258673.4375, 4259597.082062257, 4259601.0059331255, 4259605.234274874, 4260189.745631917, 4262139.268509345, 4263571.754481028, 4265940.625, 4267940.471203323, 4268429.712523436, 4269811.462584091, 4272639.5169822015, 4279989.21422277, 4280595.64115479, 4287784.984655982, 4288043.579498594, 4289748.869832344, 4291214.679915638, 4295066.288643855, 4295455.770214954, 4295827.908932188, 4296753.122708745, 4297209.247665499, 4297537.5, 4297742.924922255, 4297996.875, 4298112.112635418, 4298123.54670298, 4298899.666121945, 4299313.730094241, 4299456.410744965, 4299841.784180824, 4300079.6875, 4301201.425374242, 4302624.976201894, 4303729.5926600015, 4303943.75, 4304093.760931115, 4304171.504101938, 4304351.721475531, 4304465.419133152, 4304698.748415715, 4304784.262461744, 4304847.518894907, 4304993.376222914, 4305000.0, 4305037.311231841, 4305087.844187841, 4305173.4375, 4305653.65496653, 4305795.336888269, 4305799.055590591, 4305843.945139126, 4306289.247276141, 4306309.035807185, 4306376.5625, 4306380.457890284, 4306418.9697711365, 4307050.0, 4309875.204657577, 4309892.971045173, 4309896.532131928, 4310460.9375, 4310494.422251315, 4311216.951979988, 4312332.75756868, 4313402.400879053, 4313492.6160127865, 4314172.881809417, 4314179.6875, 4314644.879429289, 4315123.239979097, 4315428.125, 4316139.016327738, 4316143.2042985745, 4316340.866407248, 4318151.518695936, 4318921.639542427, 4320081.25, 4321375.7247715825, 4321814.167466725, 4322527.965509588, 4324245.13115808, 4325039.696561944, 4325733.040647472, 4326843.964599021, 4328967.281185517, 4329796.504614073, 4330220.062559894, 4331223.94911894, 4331247.3249581335, 4331678.125, 4332614.661418607, 4335484.856585454, 4341889.0625, 4341912.734015131, 4342225.0, 4343297.4502486475, 4343642.704401173, 4344632.787604696, 4346459.445939782, 4348767.642632464, 4348824.897692811, 4350254.11345097, 4352364.0625, 4355414.780616127, 4356701.144079399, 4357297.773554883, 4358260.9375, 4358274.955677087, 4358610.571498215, 4360432.053664464, 4361043.75, 4361627.290836672, 4362971.875, 4363202.449192786, 4373416.867462965, 4374729.085392466, 4374816.128229905, 4375167.1875, 4375253.82342847, 4380785.9375, 4381341.186414744, 4382054.564935234, 4382572.728003744, 4383056.915734341, 4383476.5625, 4383735.7033674875, 4383840.625, 4383925.0, 4387565.803989358, 4387665.618098065, 4388257.91913841, 4390361.741790282, 4392841.4412812255, 4392877.863926263, 4392907.8125, 4392995.768890998, 4393204.338217142, 4393338.07982258, 4393339.081409117, 4393590.625, 4393592.102038775, 4393672.957112864, 4393717.626718244, 4393800.0, 4393906.25, 4393931.610609449, 4394008.126790595, 4394035.863423703, 4394085.080854416, 4394096.27885041, 4394175.0, 4394219.320581697, 4394607.723281097, 4394667.1875, 4395092.643301555, 4395216.211972542, 4395309.375, 4395462.1921547875, 4395499.462716471, 4395518.370847722, 4395544.522418851, 4395582.6770793, 4395624.723930127, 4395635.467150711, 4395685.71139335, 4395801.5625, 4395821.6747192005, 4395829.6875, 4395864.0625, 4395903.125, 4395976.5625, 4396120.159278335, 4396294.345571048, 4396296.491974652, 4396385.206310589, 4396411.506302875, 4396468.75, 4396530.996196089, 4396542.1875, 4396547.864921294, 4396550.165344026, 4396953.397601134, 4397029.6875, 4397078.082348077, 4397107.594294734, 4397239.044085475, 4397267.006468952, 4397343.67156205, 4397428.787027929, 4397460.882354579, 4397589.0625, 4397615.625, 4397746.298022186, 4397752.795004777, 4397788.602724727, 4397816.888846383, 4397971.0818776805, 4398218.683581991, 4398233.746795279, 4398331.150908288, 4398391.548279472, 4398509.375, 4398539.181731126, 4399032.909388123, 4399300.58152066, 4399481.25, 4399565.548232115, 4399585.242208252, 4400584.354719061, 4401037.077683414, 4401217.102886928, 4402551.5625, 4402673.698065239, 4402806.788532538, 4403020.749304375, 4403514.0625, 4403531.5568769965, 4403629.248646222, 4403681.25, 4403821.875, 4404145.389457715, 4404444.691766996, 4404693.75, 4404735.660190878, 4404944.730993348, 4405115.625, 4405370.116348378, 4406930.959015745, 4408360.9375, 4408422.833762857, 4408715.125356686, 4412136.712710162, 4412701.719468899, 4413732.436056823, 4415143.75, 4416137.434953094, 4416392.581935961, 4418338.889683759, 4418447.292481603, 4420030.983791887, 4420350.265857293, 4421177.811408151, 4421504.6875, 4422935.9375, 4424265.139000438, 4424400.0, 4424630.513806284, 4426379.6875, 4427017.743107493, 4427079.641765244, 4427692.1875, 4428900.0, 4429609.916961221, 4429884.047859879, 4430721.927365757, 4430886.3369275695, 4431985.016049748, 4435516.907826778, 4437843.53110235, 4437848.901216147, 4438779.6875, 4439299.914633836, 4442361.378272445, 4442579.332113145, 4443009.010973618, 4443565.781423968, 4443585.864412569, 4444825.68766622, 4445031.493810747, 4445056.25, 4445085.857782103, 4445427.049236831, 4446185.9375, 4447295.2820797935, 4448309.648698351, 4448425.416308786, 4449374.901984472, 4449556.590134594, 4450404.6875, 4450594.417523561, 4455951.118699486, 4456135.025669398, 4458248.12748243, 4458471.715612657, 4459298.663722041, 4459978.589433786, 4460204.599237335, 4460373.4375, 4463205.96372424, 4463241.308129848, 4464314.169836434, 4464519.159580129, 4464820.3125, 4465351.980175369, 4466170.3125, 4466295.698738305, 4467059.375, 4467833.639529561, 4469766.999641481, 4472699.608567794, 4473926.011264583, 4477118.905014746, 4478955.115927358, 4479850.659584256, 4480651.5625, 4480835.9375, 4484211.685435569, 4485039.0625, 4485070.3125, 4485096.476817368, 4486649.459258419, 4486835.698628532, 4487690.470415209, 4487917.087053131, 4489515.318049345, 4490340.607073932, 4490509.375, 4491288.0531624565, 4492546.666571174, 4492900.484875348, 4497620.3125, 4497687.068859411, 4500396.70877578, 4500802.507042047, 4502129.481304927, 4502369.540840375, 4503963.566875351, 4509110.676704847, 4509132.8125, 4509420.3125, 4510306.25, 4510471.381201056, 4510720.046323489, 4511415.625, 4514217.1875, 4517554.6875, 4518503.254096698, 4527128.773290837, 4528487.5, 4529232.169512742, 4529465.862700659, 4529568.307311594, 4529725.18384392, 4529893.838590416, 4530163.750451009, 4530254.6875, 4530446.875, 4530695.3125, 4530774.935562774, 4530835.367549162, 4530903.114533853, 4530921.737040359, 4531048.394428279, 4531328.089713998, 4531340.899774952, 4531360.3627212085, 4531545.506685329, 4531550.0, 4531581.8064802885, 4531703.196035526, 4531773.9554870855, 4531793.75, 4531806.25, 4531930.195654248, 4531944.319297612, 4531945.7586225625, 4532579.6875, 4532709.802040875, 4532780.572142136, 4532873.4375, 4532894.783968246, 4533067.1875, 4533232.8125, 4533353.850759622, 4533377.229651694, 4534490.531141364, 4534592.118925302, 4534684.009369205, 4534989.607496903, 4535321.875, 4535545.701426532, 4536415.938697415, 4536695.51616832, 4537735.628158994, 4538807.118207685, 4543085.9375, 4543183.971789165, 4544384.375, 4544573.136025906, 4547012.200231274, 4547185.742085462, 4547400.0, 4548671.392221892, 4548681.218244598, 4550619.710095845, 4552182.905612615, 4552907.50979268, 4553203.581435444, 4554165.779428931, 4562413.178797712, 4563232.416476666, 4563527.631651609, 4564515.349395588, 4567514.0625, 4570159.922213762, 4572323.4375, 4573014.668880328, 4573562.112171618, 4574213.75607293, 4576185.4146490125, 4579190.625, 4580592.114198371, 4581123.4375, 4581480.772772523, 4581593.535188984, 4581595.3125, 4583301.5625, 4583596.875, 4584832.8125, 4584941.8988376, 4589661.662603251, 4590885.470187881, 4592736.333666619, 4593396.875, 4593662.426775458, 4593815.209655068, 4594600.556792485, 4594960.9375, 4595213.599761273, 4595743.651950754, 4596634.03893486, 4596776.741483507, 4596829.157515251, 4599312.26058164, 4603611.153178249, 4604697.16013225, 4605699.973643394, 4606387.859298308, 4607297.156884569, 4607548.4375, 4607732.412632194, 4609809.275831021, 4610307.352452756, 4612146.975034459, 4612327.188837477, 4612837.104440099, 4612928.125, 4615982.005493211, 4616338.390666986, 4616559.27676706, 4618425.1390748015, 4619296.875, 4619922.100935762, 4620638.8277066015, 4620643.824116788, 4621503.9161972115, 4621869.855856315, 4621943.903082619, 4622176.722194239, 4622470.748674531, 4622760.111187375, 4623130.3047963185, 4623135.113056483, 4623448.4375, 4624041.579452486, 4624075.0, 4624076.062264652, 4624239.0625, 4624313.590643151, 4624755.730304467, 4625040.95739796, 4625133.706468949, 4625134.3043659255, 4625138.271920602, 4625193.321305915, 4625242.102082534, 4625368.75, 4625529.984418699, 4625789.4793832125, 4625924.862254143, 4625935.28078355, 4626015.625, 4626041.789076946, 4626071.736725499, 4626207.720969535, 4626246.012492786, 4626345.02044031, 4626499.757740222, 4626584.375, 4626635.379835914, 4626667.171824254, 4626780.213185343, 4626785.9375, 4626794.909478633, 4626994.56563516, 4627018.706540524, 4627176.138579239, 4627354.658161329, 4627514.350183382, 4627530.429233826, 4627537.5269872, 4627565.625, 4628141.431487585, 4628180.226228751, 4628247.996268739, 4628375.0, 4628384.375, 4628445.144150718, 4628494.886110454, 4628606.25, 4628617.1875, 4628808.509128113, 4628812.255921757, 4628867.520864236, 4629001.172690076, 4629066.6495627705, 4629078.125, 4629378.595608969, 4629937.4122660225, 4630681.25, 4632257.946022467, 4632276.281864069, 4632501.244354461, 4633690.625, 4633956.419282986, 4635849.176261011, 4638116.288972959, 4640328.09070231, 4641249.325346412, 4641293.659889099, 4641441.979916909, 4642189.938885332, 4642268.08115438, 4642474.784923405, 4642625.7656548675, 4642767.2445551725, 4642996.956409141, 4643350.0, 4644109.375, 4644157.1904826285, 4644286.95733519, 4644457.631114853, 4644872.992449769, 4645152.930661849, 4645771.875, 4646133.701946942, 4646242.1875, 4646754.6875, 4646795.6128007425, 4646823.876100656, 4647343.406537229, 4648836.172103359, 4648858.736178807, 4648879.575076381, 4648983.877445794, 4649141.783859106, 4649185.908268496, 4650956.280129294, 4651089.954474335, 4651140.439303164, 4651140.660087529, 4652617.1875, 4653398.4375, 4656289.0625, 4656458.582235693, 4656891.76880838, 4659553.037809023, 4660882.8125, 4666158.245102579, 4666956.9328664765, 4671479.705917938, 4680883.158347579, 4682808.171176965, 4683065.191763955, 4683695.3125, 4685417.1875, 4685855.311454501, 4687367.1875, 4687403.125, 4687406.983772382, 4687531.92417389, 4687734.2220365945, 4687943.981102917, 4688127.783790008, 4688206.25, 4688810.881588049, 4690070.3125, 4692451.64880667, 4694128.9912848985, 4696748.541845414, 4697175.89024363, 4697688.304035394, 4697945.710009263, 4699220.3125, 4699259.7912870785, 4699314.659348063, 4700906.086666182, 4701346.22622348, 4701361.458454058, 4701420.399056942, 4701424.2752106525, 4703324.695304565, 4703377.27093183, 4703440.625, 4703486.5428937245, 4703571.700023002, 4703735.494575269, 4703751.56097523, 4703757.536457954, 4703956.560834728, 4704020.3125, 4704159.375, 4704337.328397445, 4704343.585496777, 4704462.676689482, 4704578.582264489, 4705232.8125, 4705253.244424262, 4705392.5613889545, 4705941.481852855, 4705953.255615827, 4706027.227061485, 4706450.910371356, 4706530.500834225, 4706724.970021486, 4706826.743423988, 4707327.838772352, 4708084.245995758, 4708443.75, 4708510.9375, 4708526.5625, 4708528.624464791, 4708537.023816093, 4708538.851214374, 4708552.738183583, 4708698.4375, 4709032.8125, 4709036.441401863, 4709350.570431729, 4709413.931049893, 4709451.345984034, 4709573.76634046, 4710276.5625, 4710284.235300767, 4710481.25, 4710645.3125, 4710660.07236572, 4712531.80121339, 4712667.443992915, 4713086.591732333, 4713188.773980056, 4713206.25, 4713367.1875, 4714075.02319893, 4714079.154819628, 4714309.375, 4714406.938646398, 4714514.0625, 4714598.133906883, 4714795.052961818, 4714856.853358471, 4715137.335114603, 4715150.0, 4715205.524731733, 4715226.317962832, 4715257.118564625, 4715322.410748897, 4715354.6875, 4715372.856132382, 4715508.684974525, 4716283.67764945, 4716331.25, 4716361.197645866, 4716914.5141839525, 4716993.75, 4717040.465023909, 4717322.4674370205, 4717445.779148666, 4717635.503578859, 4717673.253556231, 4718497.440163191, 4718502.640531483, 4718546.8189077275, 4719023.837926639, 4719029.988268416, 4719139.0625, 4723836.473897442, 4724179.6875, 4724230.491621309, 4724231.950522674, 4724250.826643299, 4724919.175916756, 4725228.125, 4725640.489046063, 4726071.954147416, 4726601.5625, 4729894.610960424, 4729896.730706039, 4731118.75, 4731139.0625, 4735063.853262089, 4735067.02977407, 4735864.209980137, 4736915.231929212, 4737591.456391673, 4740182.861196518, 4740971.875, 4742736.334419399, 4743190.545154647, 4743904.6875, 4744104.053018459, 4744937.31772275, 4745326.515677143, 4745367.421046186, 4745518.75, 4745646.875, 4745971.067201765, 4745976.49065899, 4746056.33364192, 4746250.635420228, 4746301.338695134, 4746507.8125, 4746644.577779188, 4746832.841825035, 4746913.847026348, 4746933.957250831, 4746996.431812671, 4747282.421881826, 4748017.1875, 4748179.6875, 4749935.520389164, 4750483.511872166, 4750566.3243347965, 4752676.025281601, 4757172.758142638, 4757261.390743221, 4762554.761395418, 4767576.445377996, 4775649.358147752, 4784243.235122898, 4785643.75, 4786788.356229741, 4787492.436164061, 4792573.4375, 4801898.817978834, 4823025.0, 4823167.885087628, 4827533.556823186, 4835489.741512074, 4836413.472339579, 4862669.962206846, 4869103.904053644, 4872984.375, 4873617.1875, 4874759.370768874, 4875736.837388563, 4875806.131778305, 4876069.277475238, 4878007.8125, 4879570.007977592, 4880870.815823396, 4881948.198740762, 4882620.698023904, 4882621.083923785, 4883421.525365883, 4888754.749770322, 4898816.985436275, 4901765.625, 4903071.119184256, 4903353.002699918, 4903447.488146774, 4904131.117285669, 4904207.8125, 4904362.521858495, 4904684.342216097, 4904870.191668913, 4905160.369591696, 4905546.543233373, 4906825.0, 4906930.440395187, 4909275.979870328, 4909793.6602467345, 4911220.3125, 4912466.643791173, 4912710.167468235, 4916046.109934294, 4916728.058938699, 4920236.635131918, 4928554.750202625, 4930897.921100969, 4930958.730343673, 4947020.3125, 4951218.75, 4955633.608430749, 4955923.043827698, 4958131.218917335, 4960253.125, 4963177.399810687, 4964098.4375, 4976563.432042061, 4987063.636145441, 4989415.286248312, 4992714.44218045, 5003450.955401119, 5005235.9375, 5015042.964394069, 5022958.042902326, 5027565.4549980955, 5035560.398071579, 5037129.6875, 5037304.0598461665, 5037886.597090605, 5038413.031379948, 5039175.272313287, 5041044.7561976295, 5041064.0625, 5041606.179199151, 5041892.970913383, 5044879.6875, 5061110.859877855, 5065475.0, 5070195.839033879, 5070409.145266534, 5071034.964865517, 5071076.289851718, 5071137.298236155, 5071221.980344192, 5071647.847922835, 5071668.405844358, 5071957.715237482, ...], [71.60449912030982, 48.236405684971395, 83.75665434929955, 7.035498064652902, 60.67075153531164, 49.70796360154537, 92.29162342433143, 12.978465809291949, 52.54196340586645, 93.58234264919754, 7.072933122740124, 6.432773013793146, 32.55407541390798, 58.05561339260386, 41.43638616976127, 104.64147487666285, 53.68720127867738, 100.33584517468367, 5.664150843338163, 34.86449777063488, 68.42652255786217, 19.37003926065666, 14.029685526615573, 17.574587316976, 18.68237165358996, 6.434845188119896, 65.79896983672944, 12.874165959785609, 5.063381942488969, 11.923355376916822, 44.022248060372974, 13.844660519687356, 13.33245610426963, 78.75234885203345, 26.539742062403317, 20.28487413053443, 22.031648934934854, 17.004833940657065, 111.42413982552155, 55.24990612044148, 36.47263521303008, 23.118193222425454, 122.99537435500169, 53.85523027200803, 11.033461049995788, 10.78482429693864, 14.38342162008254, 42.35319064531698, 24.851437366247662, 8.603886812601397, 20.165922744688764, 14.862494944785494, 78.30098116542344, 82.935776748894, 21.227429520975925, 51.41984538574612, 33.93595183138798, 10.107352947622916, 10.002998272128142, 28.895999693734325, 17.635663036848154, 6.136522431217377, 8.16894793954509, 80.82255131075976, 79.582220910303, 8.848013078463964, 8.817070722421464, 73.8034409353641, 20.576613115498148, 6.407509572208795, 85.40185663717769, 9.542865780780431, 11.737647186222873, 8.129197558016362, 103.23467817270986, 5.805500190944699, 67.8432585833731, 64.86339739964359, 94.5434464435083, 7.043560997787996, 10.247518568830786, 29.734299723271853, 13.599023584679697, 78.69301148575354, 25.001223246375837, 17.632008490088282, 62.77943524248568, 75.27974445180595, 98.91622786644513, 40.35598037696864, 15.798562793997359, 50.323182361144255, 11.632896495514798, 10.673995767493357, 11.166456052652746, 31.501460800825676, 29.335056987137452, 18.74340216665506, 15.268046496424905, 15.814440282669457, 5.9389493009167555, 14.010739251063903, 39.61933891467081, 52.89254038769195, 26.29782869625191, 28.251898943695757, 23.78243772569387, 55.8956810971688, 8.055123832703668, 93.93473219311619, 90.02589505154162, 55.94618739564745, 49.60093341931633, 27.460145800583184, 7.868486839482861, 34.10466810515625, 47.14709249345988, 18.26437740047907, 11.633475348225883, 64.90660282236992, 6.234776045003489, 12.929860459326331, 52.26644610292936, 90.20024746524714, 44.409140265191525, 71.79477377177409, 89.81348678305133, 37.44087461460499, 24.891467458101257, 17.74233260667206, 26.04884980982006, 11.642715071521705, 47.48631882946494, 6.610174269570624, 40.44664403017251, 14.034569607505766, 54.58712698162709, 46.17325967658648, 27.214181531782007, 64.23874061626634, 136.56215177152444, 16.048907245925356, 61.759863734137454, 5.254053410490655, 90.06414962090494, 5.5685263572881585, 13.698977607442684, 71.3391920950575, 126.7790684720986, 26.67656853437977, 5.412538147355581, 74.07384872969457, 6.527820349956833, 45.620846907181885, 15.031030675839869, 33.189003975420334, 26.752816962718583, 44.87827267788804, 49.724650614047206, 13.32865759512694, 46.14791506610619, 71.07532656064814, 26.535290410652934, 5.511707938656483, 5.726363004512514, 5.739729284510998, 9.006131526524607, 85.94008366749784, 58.37283911593721, 44.28546912219846, 71.33343227252432, 17.535267254766463, 6.357545736320333, 98.54800260249047, 10.944412157108713, 87.42178848143767, 25.817053365892583, 15.453479812156008, 19.16652783553363, 25.697324672686307, 16.44786596543256, 6.12295651044182, 12.236173923202129, 48.37635896510039, 26.09374332355018, 17.330398928479493, 43.22935870189961, 8.956191729965171, 24.885525133354697, 73.37942812640432, 74.65125386572352, 35.52870254621876, 34.50351358204221, 50.128947844327456, 75.66493263945347, 24.216403612590582, 76.86113739967875, 23.34544442577195, 11.388614154101827, 33.67838885927483, 53.8442923297434, 26.08094505224845, 11.090711465834792, 14.591939190717843, 39.26946391175299, 5.814789517934782, 10.59356589981604, 100.02709433678375, 22.22003920625829, 51.45297612680213, 43.37502223783653, 42.225059861192264, 7.026545237898945, 29.846040120188672, 67.60741638530504, 22.711005511164892, 30.254788981323905, 6.33656119482912, 15.035288072588152, 24.710960020973005, 70.15919441438466, 5.955660111037801, 9.060170288295318, 42.671852289308234, 6.92771456134321, 100.58629363643637, 80.1423374756106, 54.36846460812989, 12.62189692819996, 13.778030493976193, 63.75350995329541, 12.370815966903423, 5.333915529883779, 8.2577407814889, 19.51512775501241, 16.87213385694066, 50.42713835794721, 100.76939706222113, 75.30205542379255, 7.533326566397484, 110.39809494648932, 71.69403178679711, 21.049004843869035, 7.692948247083831, 14.777136626445161, 7.520240287643902, 63.95726445464465, 7.325962155728394, 15.357278520113141, 20.666787938729176, 113.75578388576207, 7.298737090892105, 8.411026486402884, 15.827819588484424, 9.411896109199704, 13.695622228190446, 7.51527274072397, 6.33407665760364, 11.912270098149875, 140.99571233288688, 119.115163158335, 17.161297396372305, 62.44517646344415, 11.51430993438856, 69.09156201263386, 12.164068502854123, 12.044755967758217, 28.041461473905883, 11.240430710492218, 6.326466152423003, 5.338428168837022, 20.784912519803363, 88.80884247054622, 7.885401350674458, 22.34742143548857, 8.826722430588022, 157.40455085339732, 35.98066376729875, 22.942747945540702, 7.922298102016175, 65.93986910304076, 6.363823462703341, 58.46188597263183, 19.90197530654856, 30.71630259912299, 5.272843976693748, 12.017324195182214, 76.26064369786067, 8.694012904503175, 70.6653935870829, 12.135447257163918, 6.25183639721314, 10.174390173250908, 19.50258330691706, 41.056858030383005, 10.815659128222865, 34.72163483855933, 32.26472225456584, 9.487477724280634, 28.389146976899177, 46.7528068571894, 20.94315324880325, 19.34452729423478, 27.34263326930821, 89.96255392041309, 11.924803160853994, 85.08680062677634, 12.173577872348147, 5.815380704967652, 89.08153590171304, 23.093416928200156, 43.62119751691696, 9.732617586549038, 86.72630829776965, 68.50016813400265, 11.742378068542612, 8.460079437078114, 27.001258879710434, 12.445006695887589, 13.505148804566314, 33.40836710054416, 19.955909248307933, 6.473195747776643, 34.99234838380047, 11.923653030184965, 17.776937422691965, 71.8673564079877, 29.969867041457302, 13.225082045488998, 33.67484406241259, 19.06147394790365, 120.33781609862793, 24.06130563275201, 21.79407061933586, 5.389899969433032, 77.15924151469905, 153.36706152844812, 88.49819470169206, 76.89268830244217, 57.91562069313635, 55.477743502011926, 74.85466309723692, 92.58779197974812, 185.40442656125785, 12.734534853355074, 12.150706619241546, 69.61048508879314, 24.35933050782021, 62.56671709033706, 13.1315702209409, 9.4752366938854, 12.834438766121647, 65.7663443808398, 27.70806625617614, 105.30845693270913, 49.93623001334016, 133.49611840541215, 11.0072773509886, 18.25270097780903, 11.181843381972499, 61.73093822298455, 89.16655926128587, 20.758102281975496, 23.375009403346144, 27.867008932962193, 6.057582913016352, 12.589066577698635, 14.694257221060111, 20.302909926588093, 9.24899782500758, 20.208302765351082, 68.56339551093981, 5.714388445813252, 11.282603263497023, 7.828036743119256, 38.63004554934182, 73.34415900841448, 10.190843195757738, 28.12966286124876, 7.457315688826492, 14.62852206724899, 75.17724948994172, 11.56097010302058, 120.33201892837444, 22.163624245955134, 107.63694175095961, 8.455811471183122, 22.125551709996095, 121.52046120328934, 80.05617336372121, 15.243180081269676, 7.393165928708897, 34.247123935132436, 10.720259850879906, 10.326064140449112, 38.580090487500115, 10.834352808541633, 27.78633532550853, 67.26516026687085, 26.26153810195802, 5.586988016444204, 128.27803468710954, 8.371366832751141, 9.032167766176856, 38.45797137010939, 11.027533987593555, 16.693244113289296, 93.11026137303196, 16.813660224157072, 24.19220129302591, 11.57034316343637, 82.4358851425763, 81.8561234503272, 47.42007130333863, 24.726374721054327, 117.4631343086904, 16.71703113346883, 84.62461608535143, 79.88857194069392, 8.262539197677667, 123.29483456038142, 58.918773878320394, 86.93026633408758, 30.94171475071451, 24.617273485240514, 28.96492074825076, 46.373862765430204, 45.31096626799003, 24.84510836118165, 26.86237173915304, 93.53895159772749, 26.943226749298013, 16.51302914091622, 6.051905709512221, 6.692944358725471, 28.092681806513436, 14.741000221306628, 18.42303005797691, 95.43967977974981, 139.42814983083008, 41.800258203653385, 29.447190560621912, 35.00419886905045, 78.86212772197057, 15.243731238991337, 9.710103786622396, 33.64560217036664, 27.850860504512305, 93.06938879120933, 7.863936057408808, 7.009480282470017, 12.32387805411242, 23.62361894757762, 11.189424029318818, 98.99979018596218, 79.02619748513972, 76.40507952030136, 58.707678696150325, 23.927647233110925, 18.39258953338785, 15.36704147090292, 23.729062696057202, 83.21516766215535, 35.709867035906186, 82.18873899893678, 19.921096491094648, 78.30242578931278, 12.72431476449139, 13.189161718763765, 42.76677141423342, 42.18741049625165, 6.5116688397326925, 77.82029692146116, 9.95921698546294, 85.88111979518831, 64.67536505674067, 10.055503520776911, 93.97600118706691, 51.94607680236601, 91.169759663946, 21.096085966174044, 91.04490782319367, 19.584635880733707, 10.974249580783145, 87.32450451688402, 18.99468536718482, 37.096569096575706, 14.384549016974058, 24.995427586818234, 6.864329303130617, 40.38874377255661, 27.811741207287064, 14.343657275457677, 103.00655694265112, 25.02778716943249, 8.75430557876366, 26.549604598575755, 9.120209782933854, 45.5423988262793, 73.56403452142072, 54.33396527846054, 23.00574094663545, 24.192623551809035, 39.30517529099003, 77.51042665196707, 49.320631346849474, 121.31625426161625, 18.16312188087939, 75.04327417731143, 100.1684098971022, 73.76375270770976, 8.983180335270886, 49.17812807147632, 11.269061485925418, 125.37286007386652, 33.09752964691254, 98.7121752635386, 47.709358773825585, 8.252793274521512, 22.02997812826062, 100.70587615042048, 31.783779230515925, 27.70029764317119, 27.845222618450887, 29.295705791183508, 74.67240790223256, 6.8029034338576455, 209.5877423885029, 43.69166552833496, 11.240585376962649, 133.4239507940127, 59.71217623903024, 30.330034227844887, 17.311125346898503, 5.5613633558427376, 34.586289644687035, 51.14286633478617, 16.864299943721036, 51.282139381983484, 57.27536056380268, 6.407312571949419, 44.313288944799105, 55.59893236634861, 104.31412674335819, 53.54747337756851, 32.214600621184914, 9.274084767143988, 85.75901618676163, 66.79641207216604, 31.30495282457598, 53.336493062326326, 16.289111463765337, 9.509765622208533, 33.244192265069245, 5.764334604220562, 72.3414763416263, 75.78312862499527, 60.53500852694156, 52.884719526756626, 62.53192187786475, 10.835407707744878, 97.37224177232795, 5.587882582013758, 16.978575451668018, 5.188341423173752, 13.73272074845735, 30.649106467045243, 26.509872652375208, 15.564709305440937, 5.112054566150247, 22.597063904080855, 13.344300217020606, 39.73390655018002, 50.03261569574147, 5.308294968073635, 103.46667223263732, 22.59918859612842, 265.03984223635916, 23.66899043944071, 21.26813837806509, 91.51689175180886, 14.66928955834212, 68.30731259567875, 21.72331653780976, 24.90352629112855, 58.978365149171324, 62.80821507837001, 53.64325430368406, 63.61035534300964, 13.944681076243139, 5.754513682529026, 5.588704055910953, 77.53051843021505, 43.51246957967126, 9.270245764714335, 27.98586222381087, 12.12593076422102, 47.312139015848274, 30.089331560237184, 26.725669937762568, 20.391047267648847, 11.41948925304226, 6.2024829180719045, 10.773024755718481, 15.832651422814905, 23.564209979229464, 179.30140315484218, 71.07382751332898, 8.441488341221898, 36.18086450837082, 104.85668151535859, 14.576532161058678, 13.436815499489896, 68.63784843314605, 6.895342031582248, 30.178530856902505, 122.74496117877108, 135.7335902433857, 121.54181678458625, 14.579859640977055, 8.361517648870857, 53.33574917393844, 11.500230320909024, 14.116228918453485, 6.77839417132933, 10.103863536051133, 5.442502384948822, 7.162282373461346, 15.587251312636582, 17.300351069270427, 84.11220041097215, 6.893337194963136, 31.95089960588544, 56.13069532259837, 5.770319349817537, 43.69414277179726, 21.49075283590077, 54.826112331986636, 21.778513520837777, 10.402171311070008, 16.38034584160181, 18.621639696087023, 12.726709620672533, 19.013373741771296, 52.318189749944366, 123.17813835446367, 53.99378942900426, 9.595751451836911, 11.848478812159211, 26.07101318021471, 84.08518154030753, 40.146419661315875, 13.61312536856117, 32.97268822703266, 7.570464783616529, 8.69501982189049, 89.314000420428, 14.09208718057394, 30.411766002901782, 13.170844227839904, 32.96221906237601, 6.87319865547961, 79.98302474615441, 13.599733842737848, 10.616690442289922, 38.527375804850216, 13.53935320738842, 27.957144478963688, 23.95761287493152, 30.19166102098964, 31.4064534319466, 41.525760029964616, 61.12297087207409, 61.21426805329824, 8.984246877910179, 33.32558656753421, 54.95767254479306, 7.077889934123811, 5.680148371823294, 90.29253492964637, 51.20351082746254, 12.424500259504489, 9.133210090570948, 29.55971145379076, 10.568572703354553, 30.054720060707176, 47.64231052626945, 8.552176169469783, 14.61733059443425, 65.08381456194853, 15.476088206859503, 59.3334189946835, 84.03254302194358, 49.9454183000932, 7.166673551421309, 6.609489122865574, 8.671951999915334, 27.863747970853375, 130.021587195785, 30.7369469418425, 25.007667537788492, 27.981249230669444, 22.324573021518418, 94.24116824476512, 12.580482817782373, 15.16352974251975, 5.537044672425629, 94.81592939422895, 87.9006844117703, 32.71593026982859, 13.21069649401854, 25.39413631089287, 26.058779067805528, 55.60415451938852, 47.865938785636494, 37.69107238354359, 72.83153791554193, 57.73570928648633, 11.63194725696997, 121.35686317943708, 10.630181763935266, 26.55817015686209, 34.9947045923375, 5.929674432610857, 27.214461135918967, 68.89026816802973, 89.30380842683871, 9.357009794058156, 6.955682036375023, 8.190759706700334, 18.530146337062362, 42.94605501499787, 44.88268362285402, 76.37413707193372, 23.603832280662836, 17.894188387062684, 5.807556924747042, 61.86256266459077, 8.529407819476953, 12.394105567626415, 11.15661777770811, 56.205985397952524, 5.971262015798721, 27.38879364581995, 106.00786888545379, 59.0849088638757, 7.295734174455219, 31.505511747536833, 67.0105368027872, 18.74006558078985, 18.332876761652837, 10.896746233480341, 8.412690081320465, 46.69394989355031, 95.57215056319636, 90.34379952600528, 37.35529319392587, 11.265343695213033, 12.81897114261447, 15.354721641694143, 5.319401819143447, 27.67137742535006, 6.8455487365407555, 32.69445834755899, 43.23839214993987, 13.29905626391165, 62.29704518349993, 93.20721574322836, 16.200744112453485, 11.26575092901007, 7.93719642676315, 23.69094870480677, 18.564074028980787, 40.311975636114994, 27.29625979597084, 43.80168716200622, 88.42655472104587, 6.763202198207054, 52.758312440611675, 14.378666769669698, 88.03716974606641, 84.57150606674774, 25.542179450503152, 43.919016051278554, 83.1060288834774, 17.027147341075175, 29.7559372918148, 11.319650404002074, 6.547343569456466, 128.83533736917562, 46.46278156949296, 70.27498652476649, 6.389502895352621, 40.86835052193478, 14.8284633710809, 118.84956892769699, 41.12044107073417, 31.261445611398518, 52.15671511625983, 53.70998292573853, 56.719590394445056, 12.00980364835436, 21.734014532138488, 22.79819805253976, 22.701703832111072, 92.14338268615485, 73.99262291796006, 6.333033493360074, 17.676429755894507, 80.65962728536108, 24.879113824319045, 50.847437302681406, 57.942307877289004, 57.27265394877479, 49.622443924720315, 84.33232755686558, 18.48856124905642, 8.601291385732777, 7.190548619899226, 12.33158915225432, 51.56718258639441, 47.390314699875105, 99.21427351750633, 11.164162874058182, 30.07654798908753, 104.66626640594802, 9.990529502445117, 78.58243243063721, 23.704952815875693, 22.31554130391772, 60.905263863005686, 14.348203174204148, 64.6982629338758, 27.59807729980922, 24.486034506663188, 19.754533910824104, 5.217289483378933, 35.06507792897401, 20.718081046684198, 29.775718616093698, 31.142254148615024, 56.62178556153489, 29.010011810324833, 16.99676101974191, 56.99349206638554, 10.886533746010121, 22.173093958970306, 9.759823686484955, 8.989604842289774, 5.800494221644793, 17.64473120976763, 13.36878534336758, 19.8651793466451, 5.355832660999328, 6.535296062119492, 75.16414812394343, 55.16277612803221, 57.048090612404664, 5.75991974059875, 46.041858157913154, 15.28887847706092, 59.355527709409294, 45.39101553241628, 26.099738482364305, 9.399235603944009, 109.56877110787002, 5.8805541686288825, 63.079175837381406, 99.75597857089531, 52.69918870876125, 97.93371699159995, 25.75578547713128, 15.535097801573288, 13.62876144950412, 10.149533635903106, 15.13042407901797, 37.78950183830039, 9.691195528695483, 27.039253287722865, 85.99109875500454, 65.70062423925287, 61.42330733568011, 55.282689555696194, 9.537008176615776, 71.21710192918353, 67.99180010476204, 54.86537508911603, 11.017241193404711, 126.69312946088063, 25.913087614285487, 29.769818670638713, 56.91097356278649, 12.726102551958261, 8.302146013417028, 62.62269104070843, 14.488682602936677, 6.678139639056464, 22.658350472246802, 45.92764541826167, 71.14884520840083, 22.361832162276887, 5.867605863570983, 18.501939129542205, 56.38032037745799, 20.32955801336058, 6.136535798892145, 9.394677418570522, 7.091000470431717, 23.63083754309499, 108.89988928967315, 48.60014930853202, 12.79452220700954, 73.06853602057748, 42.06474668304497, 8.498579219596431, 45.10234844639481, 12.426628048889818, 19.09117357514445, 18.365071625222964, 147.35144425028133, 13.755651832302375, 63.72816281362408, 138.72055630980088, 58.93658703513835, 28.441626150153606, 111.29822917704087, 70.52228631295908, 5.217071952704022, 51.59476773878694, 19.430871064579126, 38.96003795491185, 6.237496892713679, 5.552088427195318, 26.872457360145688, 23.136784323371348, 9.38461718051293, 104.03551642236232, 35.44474748588613, 126.4020557486123, 26.32113480870318, 6.892418103372839, 53.37382774682889, 111.77912434385857, 114.99147470967083, 26.46139025523611, 120.15064517357368, 33.593130148659085, 23.353274367864444, 63.506418841313504, 10.061006430859049, 40.008592097639415, 56.5168763211253, 64.29991518193688, 10.3723754665279, 102.71502875781972, 51.60521051574281, 23.770660168512066, 18.490368318499254, 38.11277837116099, 21.3310562456867, 10.250256173243828, 55.1192075640511, 123.64405501121523, 88.01982089336542, 150.4710656556333, 25.045995169220117, 89.24867170558954, 7.360442556269, 65.67343536575191, 5.227836155374361, 48.076866952291105, 35.28821224047104, 9.674495744469981, 17.847142086971246, 61.41666824246701, 7.9106699021697136, 5.721580024678274, 10.87198837737728, 29.196385366961493, 68.00829785408303, 10.270477381082966, 18.2367226625431, 147.47344521305874, 16.092043641270454, 7.41370583684004, 76.97954562713679, 27.198344694513878, 8.749398368176177, 83.93711473868954, 85.40345059012203, 48.182378474313715, 162.2061085568727, 6.718492675410379, 17.794671944134006, 27.572312526194416, 25.092281770381604, 5.206114101345783, 20.643756912073805, 72.62133377042623, 133.28517007903903, ...])
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);
([3655053.125, 3790720.9070209884, 3810278.125, 3819091.8501053485, 3890143.75, 3896932.8125, 3903564.0625, 3904941.5554843727, 3909315.625, 3912071.875, 3912752.937154916, 3922155.8945134985, 3922592.1875, 3923812.1249259026, 3929232.8125, 3929389.206179856, 3929414.7538153874, 3930632.7938325717, 3930638.3715421795, 3930645.3125, 3932377.5309552387, 3938688.350876838, 3938705.264773558, 3939148.990915058, 3943574.9148002574, 3950030.9084125203, 3955419.787464942, 3956914.951273213, 3960516.8819554355, 3985847.330648978, 3989321.875, 4003418.3467846047, 4006537.002338829, 4008006.25, 4008657.2476552413, 4009714.9947053217, 4009877.677343886, 4009927.015669179, 4010445.198846869, 4010570.3125, 4010710.9375, 4012140.478914171, 4012742.3657387965, 4013789.0625, 4014210.8763559754, 4014482.581470115, 4014485.4242224297, 4015532.8125, 4022734.6140401177, 4023494.305421208, 4024255.6058021504, 4024632.791614013, 4028826.2256348627, 4032649.2489244035, 4033900.7829912123, 4034365.625, 4034397.727917415, 4038719.544290705, 4039386.637629647, 4040060.4298940958, 4040291.188651372, 4040517.640621499, 4040940.3957340317, 4043073.4375, 4043990.625, 4044735.304565332, 4045499.3218998075, 4045740.408420185, 4047180.4538797983, 4047466.6603235165, 4048162.5, 4048737.739929585, 4049751.9205627083, 4051718.4400436254, 4054742.3820266533, 4059482.6972295935, 4063360.9375, 4064419.489197233, 4064792.1875, 4065326.257665491, 4065388.415532887, 4065905.766806231, 4066944.909234376, 4067693.75, 4067895.1044717575, 4067897.4380415143, 4068142.1875, 4070093.75, 4071692.0910423663, 4071703.8618159527, 4076670.0676293075, 4084294.596249474, 4092340.925826921, 4094262.188949271, 4096035.962149922, 4096255.132126725, 4097389.0625, 4097928.59272628, 4098286.020611777, 4098940.836605908, 4100035.9322597263, 4100293.482307201, 4102448.3725285553, 4105789.0625, 4115717.063775559, 4115784.361057725, 4116091.8899773257, 4116095.3125, 4116238.5975769246, 4116418.75, 4116453.125, 4116597.417239011, 4116764.0625, 4116793.6938118953, 4116855.3658008794, 4116901.69589246, 4116930.9054747685, 4117041.52271381, 4117162.8011477212, 4117203.7968294625, 4117362.238995321, 4117607.161172303, 4117898.4375, 4118007.8125, 4118091.7717020446, 4118248.9140758794, 4118262.435005384, 4121364.0625, 4122487.2843473097, 4128147.4563055323, 4131382.6733683236, 4135206.556261498, 4141315.625, 4141413.242672521, 4169560.2408473897, 4174532.5523018287, 4181539.685244477, 4181553.125, 4188971.8050926067, 4190515.625, 4192387.0716874343, 4192898.7005688916, 4200870.3125, 4201114.377694397, 4211721.748707256, 4212194.459332087, 4213453.225618947, 4221415.625, 4222538.801514114, 4223920.211554083, 4223975.363082871, 4223985.9375, 4224245.567491485, 4224353.125, 4225075.023290349, 4225259.676759349, 4225285.132105498, 4225427.707101869, 4226337.016384104, 4233321.414734754, 4240439.0625, 4244420.3125, 4249095.203148094, 4251752.676620978, 4253017.491203171, 4253047.38089691, 4254260.526021313, 4254500.0, 4258673.4375, 4259597.082062257, 4259601.0059331255, 4259605.234274874, 4260189.745631917, 4262139.268509345, 4263571.754481028, 4265940.625, 4267940.471203323, 4268429.712523436, 4269811.462584091, 4272639.5169822015, 4279989.21422277, 4280595.64115479, 4287784.984655982, 4288043.579498594, 4289748.869832344, 4291214.679915638, 4295066.288643855, 4295455.770214954, 4295827.908932188, 4296753.122708745, 4297209.247665499, 4297537.5, 4297742.924922255, 4297996.875, 4298112.112635418, 4298123.54670298, 4298899.666121945, 4299313.730094241, 4299456.410744965, 4299841.784180824, 4300079.6875, 4301201.425374242, 4302624.976201894, 4303729.5926600015, 4303943.75, 4304093.760931115, 4304171.504101938, 4304351.721475531, 4304465.419133152, 4304698.748415715, 4304784.262461744, 4304847.518894907, 4304993.376222914, 4305000.0, 4305037.311231841, 4305087.844187841, 4305173.4375, 4305653.65496653, 4305795.336888269, 4305799.055590591, 4305843.945139126, 4306289.247276141, 4306309.035807185, 4306376.5625, 4306380.457890284, 4306418.9697711365, 4307050.0, 4309875.204657577, 4309892.971045173, 4309896.532131928, 4310460.9375, 4310494.422251315, 4311216.951979988, 4312332.75756868, 4313402.400879053, 4313492.6160127865, 4314172.881809417, 4314179.6875, 4314644.879429289, 4315123.239979097, 4315428.125, 4316139.016327738, 4316143.2042985745, 4316340.866407248, 4318151.518695936, 4318921.639542427, 4320081.25, 4321375.7247715825, 4321814.167466725, 4322527.965509588, 4324245.13115808, 4325039.696561944, 4325733.040647472, 4326843.964599021, 4328967.281185517, 4329796.504614073, 4330220.062559894, 4331223.94911894, 4331247.3249581335, 4331678.125, 4332614.661418607, 4335484.856585454, 4341889.0625, 4341912.734015131, 4342225.0, 4343297.4502486475, 4343642.704401173, 4344632.787604696, 4346459.445939782, 4348767.642632464, 4348824.897692811, 4350254.11345097, 4352364.0625, 4355414.780616127, 4356701.144079399, 4357297.773554883, 4358260.9375, 4358274.955677087, 4358610.571498215, 4360432.053664464, 4361043.75, 4361627.290836672, 4362971.875, 4363202.449192786, 4373416.867462965, 4374729.085392466, 4374816.128229905, 4375167.1875, 4375253.82342847, 4380785.9375, 4381341.186414744, 4382054.564935234, 4382572.728003744, 4383056.915734341, 4383476.5625, 4383735.7033674875, 4383840.625, 4383925.0, 4387565.803989358, 4387665.618098065, 4388257.91913841, 4390361.741790282, 4392841.4412812255, 4392877.863926263, 4392907.8125, 4392995.768890998, 4393204.338217142, 4393338.07982258, 4393339.081409117, 4393590.625, 4393592.102038775, 4393672.957112864, 4393717.626718244, 4393800.0, 4393906.25, 4393931.610609449, 4394008.126790595, 4394035.863423703, 4394085.080854416, 4394096.27885041, 4394175.0, 4394219.320581697, 4394607.723281097, 4394667.1875, 4395092.643301555, 4395216.211972542, 4395309.375, 4395462.1921547875, 4395499.462716471, 4395518.370847722, 4395544.522418851, 4395582.6770793, 4395624.723930127, 4395635.467150711, 4395685.71139335, 4395801.5625, 4395821.6747192005, 4395829.6875, 4395864.0625, 4395903.125, 4395976.5625, 4396120.159278335, 4396294.345571048, 4396296.491974652, 4396385.206310589, 4396411.506302875, 4396468.75, 4396530.996196089, 4396542.1875, 4396547.864921294, 4396550.165344026, 4396953.397601134, 4397029.6875, 4397078.082348077, 4397107.594294734, 4397239.044085475, 4397267.006468952, 4397343.67156205, 4397428.787027929, 4397460.882354579, 4397589.0625, 4397615.625, 4397746.298022186, 4397752.795004777, 4397788.602724727, 4397816.888846383, 4397971.0818776805, 4398218.683581991, 4398233.746795279, 4398331.150908288, 4398391.548279472, 4398509.375, 4398539.181731126, 4399032.909388123, 4399300.58152066, 4399481.25, 4399565.548232115, 4399585.242208252, 4400584.354719061, 4401037.077683414, 4401217.102886928, 4402551.5625, 4402673.698065239, 4402806.788532538, 4403020.749304375, 4403514.0625, 4403531.5568769965, 4403629.248646222, 4403681.25, 4403821.875, 4404145.389457715, 4404444.691766996, 4404693.75, 4404735.660190878, 4404944.730993348, 4405115.625, 4405370.116348378, 4406930.959015745, 4408360.9375, 4408422.833762857, 4408715.125356686, 4412136.712710162, 4412701.719468899, 4413732.436056823, 4415143.75, 4416137.434953094, 4416392.581935961, 4418338.889683759, 4418447.292481603, 4420030.983791887, 4420350.265857293, 4421177.811408151, 4421504.6875, 4422935.9375, 4424265.139000438, 4424400.0, 4424630.513806284, 4426379.6875, 4427017.743107493, 4427079.641765244, 4427692.1875, 4428900.0, 4429609.916961221, 4429884.047859879, 4430721.927365757, 4430886.3369275695, 4431985.016049748, 4435516.907826778, 4437843.53110235, 4437848.901216147, 4438779.6875, 4439299.914633836, 4442361.378272445, 4442579.332113145, 4443009.010973618, 4443565.781423968, 4443585.864412569, 4444825.68766622, 4445031.493810747, 4445056.25, 4445085.857782103, 4445427.049236831, 4446185.9375, 4447295.2820797935, 4448309.648698351, 4448425.416308786, 4449374.901984472, 4449556.590134594, 4450404.6875, 4450594.417523561, 4455951.118699486, 4456135.025669398, 4458248.12748243, 4458471.715612657, 4459298.663722041, 4459978.589433786, 4460204.599237335, 4460373.4375, 4463205.96372424, 4463241.308129848, 4464314.169836434, 4464519.159580129, 4464820.3125, 4465351.980175369, 4466170.3125, 4466295.698738305, 4467059.375, 4467833.639529561, 4469766.999641481, 4472699.608567794, 4473926.011264583, 4477118.905014746, 4478955.115927358, 4479850.659584256, 4480651.5625, 4480835.9375, 4484211.685435569, 4485039.0625, 4485070.3125, 4485096.476817368, 4486649.459258419, 4486835.698628532, 4487690.470415209, 4487917.087053131, 4489515.318049345, 4490340.607073932, 4490509.375, 4491288.0531624565, 4492546.666571174, 4492900.484875348, 4497620.3125, 4497687.068859411, 4500396.70877578, 4500802.507042047, 4502129.481304927, 4502369.540840375, 4503963.566875351, 4509110.676704847, 4509132.8125, 4509420.3125, 4510306.25, 4510471.381201056, 4510720.046323489, 4511415.625, 4514217.1875, 4517554.6875, 4518503.254096698, 4527128.773290837, 4528487.5, 4529232.169512742, 4529465.862700659, 4529568.307311594, 4529725.18384392, 4529893.838590416, 4530163.750451009, 4530254.6875, 4530446.875, 4530695.3125, 4530774.935562774, 4530835.367549162, 4530903.114533853, 4530921.737040359, 4531048.394428279, 4531328.089713998, 4531340.899774952, 4531360.3627212085, 4531545.506685329, 4531550.0, 4531581.8064802885, 4531703.196035526, 4531773.9554870855, 4531793.75, 4531806.25, 4531930.195654248, 4531944.319297612, 4531945.7586225625, 4532579.6875, 4532709.802040875, 4532780.572142136, 4532873.4375, 4532894.783968246, 4533067.1875, 4533232.8125, 4533353.850759622, 4533377.229651694, 4534490.531141364, 4534592.118925302, 4534684.009369205, 4534989.607496903, 4535321.875, 4535545.701426532, 4536415.938697415, 4536695.51616832, 4537735.628158994, 4538807.118207685, 4543085.9375, 4543183.971789165, 4544384.375, 4544573.136025906, 4547012.200231274, 4547185.742085462, 4547400.0, 4548671.392221892, 4548681.218244598, 4550619.710095845, 4552182.905612615, 4552907.50979268, 4553203.581435444, 4554165.779428931, 4562413.178797712, 4563232.416476666, 4563527.631651609, 4564515.349395588, 4567514.0625, 4570159.922213762, 4572323.4375, 4573014.668880328, 4573562.112171618, 4574213.75607293, 4576185.4146490125, 4579190.625, 4580592.114198371, 4581123.4375, 4581480.772772523, 4581593.535188984, 4581595.3125, 4583301.5625, 4583596.875, 4584832.8125, 4584941.8988376, 4589661.662603251, 4590885.470187881, 4592736.333666619, 4593396.875, 4593662.426775458, 4593815.209655068, 4594600.556792485, 4594960.9375, 4595213.599761273, 4595743.651950754, 4596634.03893486, 4596776.741483507, 4596829.157515251, 4599312.26058164, 4603611.153178249, 4604697.16013225, 4605699.973643394, 4606387.859298308, 4607297.156884569, 4607548.4375, 4607732.412632194, 4609809.275831021, 4610307.352452756, 4612146.975034459, 4612327.188837477, 4612837.104440099, 4612928.125, 4615982.005493211, 4616338.390666986, 4616559.27676706, 4618425.1390748015, 4619296.875, 4619922.100935762, 4620638.8277066015, 4620643.824116788, 4621503.9161972115, 4621869.855856315, 4621943.903082619, 4622176.722194239, 4622470.748674531, 4622760.111187375, 4623130.3047963185, 4623135.113056483, 4623448.4375, 4624041.579452486, 4624075.0, 4624076.062264652, 4624239.0625, 4624313.590643151, 4624755.730304467, 4625040.95739796, 4625133.706468949, 4625134.3043659255, 4625138.271920602, 4625193.321305915, 4625242.102082534, 4625368.75, 4625529.984418699, 4625789.4793832125, 4625924.862254143, 4625935.28078355, 4626015.625, 4626041.789076946, 4626071.736725499, 4626207.720969535, 4626246.012492786, 4626345.02044031, 4626499.757740222, 4626584.375, 4626635.379835914, 4626667.171824254, 4626780.213185343, 4626785.9375, 4626794.909478633, 4626994.56563516, 4627018.706540524, 4627176.138579239, 4627354.658161329, 4627514.350183382, 4627530.429233826, 4627537.5269872, 4627565.625, 4628141.431487585, 4628180.226228751, 4628247.996268739, 4628375.0, 4628384.375, 4628445.144150718, 4628494.886110454, 4628606.25, 4628617.1875, 4628808.509128113, 4628812.255921757, 4628867.520864236, 4629001.172690076, 4629066.6495627705, 4629078.125, 4629378.595608969, 4629937.4122660225, 4630681.25, 4632257.946022467, 4632276.281864069, 4632501.244354461, 4633690.625, 4633956.419282986, 4635849.176261011, 4638116.288972959, 4640328.09070231, 4641249.325346412, 4641293.659889099, 4641441.979916909, 4642189.938885332, 4642268.08115438, 4642474.784923405, 4642625.7656548675, 4642767.2445551725, 4642996.956409141, 4643350.0, 4644109.375, 4644157.1904826285, 4644286.95733519, 4644457.631114853, 4644872.992449769, 4645152.930661849, 4645771.875, 4646133.701946942, 4646242.1875, 4646754.6875, 4646795.6128007425, 4646823.876100656, 4647343.406537229, 4648836.172103359, 4648858.736178807, 4648879.575076381, 4648983.877445794, 4649141.783859106, 4649185.908268496, 4650956.280129294, 4651089.954474335, 4651140.439303164, 4651140.660087529, 4652617.1875, 4653398.4375, 4656289.0625, 4656458.582235693, 4656891.76880838, 4659553.037809023, 4660882.8125, 4666158.245102579, 4666956.9328664765, 4671479.705917938, 4680883.158347579, 4682808.171176965, 4683065.191763955, 4683695.3125, 4685417.1875, 4685855.311454501, 4687367.1875, 4687403.125, 4687406.983772382, 4687531.92417389, 4687734.2220365945, 4687943.981102917, 4688127.783790008, 4688206.25, 4688810.881588049, 4690070.3125, 4692451.64880667, 4694128.9912848985, 4696748.541845414, 4697175.89024363, 4697688.304035394, 4697945.710009263, 4699220.3125, 4699259.7912870785, 4699314.659348063, 4700906.086666182, 4701346.22622348, 4701361.458454058, 4701420.399056942, 4701424.2752106525, 4703324.695304565, 4703377.27093183, 4703440.625, 4703486.5428937245, 4703571.700023002, 4703735.494575269, 4703751.56097523, 4703757.536457954, 4703956.560834728, 4704020.3125, 4704159.375, 4704337.328397445, 4704343.585496777, 4704462.676689482, 4704578.582264489, 4705232.8125, 4705253.244424262, 4705392.5613889545, 4705941.481852855, 4705953.255615827, 4706027.227061485, 4706450.910371356, 4706530.500834225, 4706724.970021486, 4706826.743423988, 4707327.838772352, 4708084.245995758, 4708443.75, 4708510.9375, 4708526.5625, 4708528.624464791, 4708537.023816093, 4708538.851214374, 4708552.738183583, 4708698.4375, 4709032.8125, 4709036.441401863, 4709350.570431729, 4709413.931049893, 4709451.345984034, 4709573.76634046, 4710276.5625, 4710284.235300767, 4710481.25, 4710645.3125, 4710660.07236572, 4712531.80121339, 4712667.443992915, 4713086.591732333, 4713188.773980056, 4713206.25, 4713367.1875, 4714075.02319893, 4714079.154819628, 4714309.375, 4714406.938646398, 4714514.0625, 4714598.133906883, 4714795.052961818, 4714856.853358471, 4715137.335114603, 4715150.0, 4715205.524731733, 4715226.317962832, 4715257.118564625, 4715322.410748897, 4715354.6875, 4715372.856132382, 4715508.684974525, 4716283.67764945, 4716331.25, 4716361.197645866, 4716914.5141839525, 4716993.75, 4717040.465023909, 4717322.4674370205, 4717445.779148666, 4717635.503578859, 4717673.253556231, 4718497.440163191, 4718502.640531483, 4718546.8189077275, 4719023.837926639, 4719029.988268416, 4719139.0625, 4723836.473897442, 4724179.6875, 4724230.491621309, 4724231.950522674, 4724250.826643299, 4724919.175916756, 4725228.125, 4725640.489046063, 4726071.954147416, 4726601.5625, 4729894.610960424, 4729896.730706039, 4731118.75, 4731139.0625, 4735063.853262089, 4735067.02977407, 4735864.209980137, 4736915.231929212, 4737591.456391673, 4740182.861196518, 4740971.875, 4742736.334419399, 4743190.545154647, 4743904.6875, 4744104.053018459, 4744937.31772275, 4745326.515677143, 4745367.421046186, 4745518.75, 4745646.875, 4745971.067201765, 4745976.49065899, 4746056.33364192, 4746250.635420228, 4746301.338695134, 4746507.8125, 4746644.577779188, 4746832.841825035, 4746913.847026348, 4746933.957250831, 4746996.431812671, 4747282.421881826, 4748017.1875, 4748179.6875, 4749935.520389164, 4750483.511872166, 4750566.3243347965, 4752676.025281601, 4757172.758142638, 4757261.390743221, 4762554.761395418, 4767576.445377996, 4775649.358147752, 4784243.235122898, 4785643.75, 4786788.356229741, 4787492.436164061, 4792573.4375, 4801898.817978834, 4823025.0, 4823167.885087628, 4827533.556823186, 4835489.741512074, 4836413.472339579, 4862669.962206846, 4869103.904053644, 4872984.375, 4873617.1875, 4874759.370768874, 4875736.837388563, 4875806.131778305, 4876069.277475238, 4878007.8125, 4879570.007977592, 4880870.815823396, 4881948.198740762, 4882620.698023904, 4882621.083923785, 4883421.525365883, 4888754.749770322, 4898816.985436275, 4901765.625, 4903071.119184256, 4903353.002699918, 4903447.488146774, 4904131.117285669, 4904207.8125, 4904362.521858495, 4904684.342216097, 4904870.191668913, 4905160.369591696, 4905546.543233373, 4906825.0, 4906930.440395187, 4909275.979870328, 4909793.6602467345, 4911220.3125, 4912466.643791173, 4912710.167468235, 4916046.109934294, 4916728.058938699, 4920236.635131918, 4928554.750202625, 4930897.921100969, 4930958.730343673, 4947020.3125, 4951218.75, 4955633.608430749, 4955923.043827698, 4958131.218917335, 4960253.125, 4963177.399810687, 4964098.4375, 4976563.432042061, 4987063.636145441, 4989415.286248312, 4992714.44218045, 5003450.955401119, 5005235.9375, 5015042.964394069, 5022958.042902326, 5027565.4549980955, 5035560.398071579, 5037129.6875, 5037304.0598461665, 5037886.597090605, 5038413.031379948, 5039175.272313287, 5041044.7561976295, 5041064.0625, 5041606.179199151, 5041892.970913383, 5044879.6875, 5061110.859877855, 5065475.0, 5070195.839033879, 5070409.145266534, 5071034.964865517, 5071076.289851718, 5071137.298236155, 5071221.980344192, 5071647.847922835, 5071668.405844358, 5071957.715237482, ...], [71.60449912030982, 48.236405684971395, 83.75665434929955, 7.035498064652902, 60.67075153531164, 49.70796360154537, 92.29162342433143, 12.978465809291949, 52.54196340586645, 93.58234264919754, 7.072933122740124, 6.432773013793146, 32.55407541390798, 58.05561339260386, 41.43638616976127, 104.64147487666285, 53.68720127867738, 100.33584517468367, 5.664150843338163, 34.86449777063488, 68.42652255786217, 19.37003926065666, 14.029685526615573, 17.574587316976, 18.68237165358996, 6.434845188119896, 65.79896983672944, 12.874165959785609, 5.063381942488969, 11.923355376916822, 44.022248060372974, 13.844660519687356, 13.33245610426963, 78.75234885203345, 26.539742062403317, 20.28487413053443, 22.031648934934854, 17.004833940657065, 111.42413982552155, 55.24990612044148, 36.47263521303008, 23.118193222425454, 122.99537435500169, 53.85523027200803, 11.033461049995788, 10.78482429693864, 14.38342162008254, 42.35319064531698, 24.851437366247662, 8.603886812601397, 20.165922744688764, 14.862494944785494, 78.30098116542344, 82.935776748894, 21.227429520975925, 51.41984538574612, 33.93595183138798, 10.107352947622916, 10.002998272128142, 28.895999693734325, 17.635663036848154, 6.136522431217377, 8.16894793954509, 80.82255131075976, 79.582220910303, 8.848013078463964, 8.817070722421464, 73.8034409353641, 20.576613115498148, 6.407509572208795, 85.40185663717769, 9.542865780780431, 11.737647186222873, 8.129197558016362, 103.23467817270986, 5.805500190944699, 67.8432585833731, 64.86339739964359, 94.5434464435083, 7.043560997787996, 10.247518568830786, 29.734299723271853, 13.599023584679697, 78.69301148575354, 25.001223246375837, 17.632008490088282, 62.77943524248568, 75.27974445180595, 98.91622786644513, 40.35598037696864, 15.798562793997359, 50.323182361144255, 11.632896495514798, 10.673995767493357, 11.166456052652746, 31.501460800825676, 29.335056987137452, 18.74340216665506, 15.268046496424905, 15.814440282669457, 5.9389493009167555, 14.010739251063903, 39.61933891467081, 52.89254038769195, 26.29782869625191, 28.251898943695757, 23.78243772569387, 55.8956810971688, 8.055123832703668, 93.93473219311619, 90.02589505154162, 55.94618739564745, 49.60093341931633, 27.460145800583184, 7.868486839482861, 34.10466810515625, 47.14709249345988, 18.26437740047907, 11.633475348225883, 64.90660282236992, 6.234776045003489, 12.929860459326331, 52.26644610292936, 90.20024746524714, 44.409140265191525, 71.79477377177409, 89.81348678305133, 37.44087461460499, 24.891467458101257, 17.74233260667206, 26.04884980982006, 11.642715071521705, 47.48631882946494, 6.610174269570624, 40.44664403017251, 14.034569607505766, 54.58712698162709, 46.17325967658648, 27.214181531782007, 64.23874061626634, 136.56215177152444, 16.048907245925356, 61.759863734137454, 5.254053410490655, 90.06414962090494, 5.5685263572881585, 13.698977607442684, 71.3391920950575, 126.7790684720986, 26.67656853437977, 5.412538147355581, 74.07384872969457, 6.527820349956833, 45.620846907181885, 15.031030675839869, 33.189003975420334, 26.752816962718583, 44.87827267788804, 49.724650614047206, 13.32865759512694, 46.14791506610619, 71.07532656064814, 26.535290410652934, 5.511707938656483, 5.726363004512514, 5.739729284510998, 9.006131526524607, 85.94008366749784, 58.37283911593721, 44.28546912219846, 71.33343227252432, 17.535267254766463, 6.357545736320333, 98.54800260249047, 10.944412157108713, 87.42178848143767, 25.817053365892583, 15.453479812156008, 19.16652783553363, 25.697324672686307, 16.44786596543256, 6.12295651044182, 12.236173923202129, 48.37635896510039, 26.09374332355018, 17.330398928479493, 43.22935870189961, 8.956191729965171, 24.885525133354697, 73.37942812640432, 74.65125386572352, 35.52870254621876, 34.50351358204221, 50.128947844327456, 75.66493263945347, 24.216403612590582, 76.86113739967875, 23.34544442577195, 11.388614154101827, 33.67838885927483, 53.8442923297434, 26.08094505224845, 11.090711465834792, 14.591939190717843, 39.26946391175299, 5.814789517934782, 10.59356589981604, 100.02709433678375, 22.22003920625829, 51.45297612680213, 43.37502223783653, 42.225059861192264, 7.026545237898945, 29.846040120188672, 67.60741638530504, 22.711005511164892, 30.254788981323905, 6.33656119482912, 15.035288072588152, 24.710960020973005, 70.15919441438466, 5.955660111037801, 9.060170288295318, 42.671852289308234, 6.92771456134321, 100.58629363643637, 80.1423374756106, 54.36846460812989, 12.62189692819996, 13.778030493976193, 63.75350995329541, 12.370815966903423, 5.333915529883779, 8.2577407814889, 19.51512775501241, 16.87213385694066, 50.42713835794721, 100.76939706222113, 75.30205542379255, 7.533326566397484, 110.39809494648932, 71.69403178679711, 21.049004843869035, 7.692948247083831, 14.777136626445161, 7.520240287643902, 63.95726445464465, 7.325962155728394, 15.357278520113141, 20.666787938729176, 113.75578388576207, 7.298737090892105, 8.411026486402884, 15.827819588484424, 9.411896109199704, 13.695622228190446, 7.51527274072397, 6.33407665760364, 11.912270098149875, 140.99571233288688, 119.115163158335, 17.161297396372305, 62.44517646344415, 11.51430993438856, 69.09156201263386, 12.164068502854123, 12.044755967758217, 28.041461473905883, 11.240430710492218, 6.326466152423003, 5.338428168837022, 20.784912519803363, 88.80884247054622, 7.885401350674458, 22.34742143548857, 8.826722430588022, 157.40455085339732, 35.98066376729875, 22.942747945540702, 7.922298102016175, 65.93986910304076, 6.363823462703341, 58.46188597263183, 19.90197530654856, 30.71630259912299, 5.272843976693748, 12.017324195182214, 76.26064369786067, 8.694012904503175, 70.6653935870829, 12.135447257163918, 6.25183639721314, 10.174390173250908, 19.50258330691706, 41.056858030383005, 10.815659128222865, 34.72163483855933, 32.26472225456584, 9.487477724280634, 28.389146976899177, 46.7528068571894, 20.94315324880325, 19.34452729423478, 27.34263326930821, 89.96255392041309, 11.924803160853994, 85.08680062677634, 12.173577872348147, 5.815380704967652, 89.08153590171304, 23.093416928200156, 43.62119751691696, 9.732617586549038, 86.72630829776965, 68.50016813400265, 11.742378068542612, 8.460079437078114, 27.001258879710434, 12.445006695887589, 13.505148804566314, 33.40836710054416, 19.955909248307933, 6.473195747776643, 34.99234838380047, 11.923653030184965, 17.776937422691965, 71.8673564079877, 29.969867041457302, 13.225082045488998, 33.67484406241259, 19.06147394790365, 120.33781609862793, 24.06130563275201, 21.79407061933586, 5.389899969433032, 77.15924151469905, 153.36706152844812, 88.49819470169206, 76.89268830244217, 57.91562069313635, 55.477743502011926, 74.85466309723692, 92.58779197974812, 185.40442656125785, 12.734534853355074, 12.150706619241546, 69.61048508879314, 24.35933050782021, 62.56671709033706, 13.1315702209409, 9.4752366938854, 12.834438766121647, 65.7663443808398, 27.70806625617614, 105.30845693270913, 49.93623001334016, 133.49611840541215, 11.0072773509886, 18.25270097780903, 11.181843381972499, 61.73093822298455, 89.16655926128587, 20.758102281975496, 23.375009403346144, 27.867008932962193, 6.057582913016352, 12.589066577698635, 14.694257221060111, 20.302909926588093, 9.24899782500758, 20.208302765351082, 68.56339551093981, 5.714388445813252, 11.282603263497023, 7.828036743119256, 38.63004554934182, 73.34415900841448, 10.190843195757738, 28.12966286124876, 7.457315688826492, 14.62852206724899, 75.17724948994172, 11.56097010302058, 120.33201892837444, 22.163624245955134, 107.63694175095961, 8.455811471183122, 22.125551709996095, 121.52046120328934, 80.05617336372121, 15.243180081269676, 7.393165928708897, 34.247123935132436, 10.720259850879906, 10.326064140449112, 38.580090487500115, 10.834352808541633, 27.78633532550853, 67.26516026687085, 26.26153810195802, 5.586988016444204, 128.27803468710954, 8.371366832751141, 9.032167766176856, 38.45797137010939, 11.027533987593555, 16.693244113289296, 93.11026137303196, 16.813660224157072, 24.19220129302591, 11.57034316343637, 82.4358851425763, 81.8561234503272, 47.42007130333863, 24.726374721054327, 117.4631343086904, 16.71703113346883, 84.62461608535143, 79.88857194069392, 8.262539197677667, 123.29483456038142, 58.918773878320394, 86.93026633408758, 30.94171475071451, 24.617273485240514, 28.96492074825076, 46.373862765430204, 45.31096626799003, 24.84510836118165, 26.86237173915304, 93.53895159772749, 26.943226749298013, 16.51302914091622, 6.051905709512221, 6.692944358725471, 28.092681806513436, 14.741000221306628, 18.42303005797691, 95.43967977974981, 139.42814983083008, 41.800258203653385, 29.447190560621912, 35.00419886905045, 78.86212772197057, 15.243731238991337, 9.710103786622396, 33.64560217036664, 27.850860504512305, 93.06938879120933, 7.863936057408808, 7.009480282470017, 12.32387805411242, 23.62361894757762, 11.189424029318818, 98.99979018596218, 79.02619748513972, 76.40507952030136, 58.707678696150325, 23.927647233110925, 18.39258953338785, 15.36704147090292, 23.729062696057202, 83.21516766215535, 35.709867035906186, 82.18873899893678, 19.921096491094648, 78.30242578931278, 12.72431476449139, 13.189161718763765, 42.76677141423342, 42.18741049625165, 6.5116688397326925, 77.82029692146116, 9.95921698546294, 85.88111979518831, 64.67536505674067, 10.055503520776911, 93.97600118706691, 51.94607680236601, 91.169759663946, 21.096085966174044, 91.04490782319367, 19.584635880733707, 10.974249580783145, 87.32450451688402, 18.99468536718482, 37.096569096575706, 14.384549016974058, 24.995427586818234, 6.864329303130617, 40.38874377255661, 27.811741207287064, 14.343657275457677, 103.00655694265112, 25.02778716943249, 8.75430557876366, 26.549604598575755, 9.120209782933854, 45.5423988262793, 73.56403452142072, 54.33396527846054, 23.00574094663545, 24.192623551809035, 39.30517529099003, 77.51042665196707, 49.320631346849474, 121.31625426161625, 18.16312188087939, 75.04327417731143, 100.1684098971022, 73.76375270770976, 8.983180335270886, 49.17812807147632, 11.269061485925418, 125.37286007386652, 33.09752964691254, 98.7121752635386, 47.709358773825585, 8.252793274521512, 22.02997812826062, 100.70587615042048, 31.783779230515925, 27.70029764317119, 27.845222618450887, 29.295705791183508, 74.67240790223256, 6.8029034338576455, 209.5877423885029, 43.69166552833496, 11.240585376962649, 133.4239507940127, 59.71217623903024, 30.330034227844887, 17.311125346898503, 5.5613633558427376, 34.586289644687035, 51.14286633478617, 16.864299943721036, 51.282139381983484, 57.27536056380268, 6.407312571949419, 44.313288944799105, 55.59893236634861, 104.31412674335819, 53.54747337756851, 32.214600621184914, 9.274084767143988, 85.75901618676163, 66.79641207216604, 31.30495282457598, 53.336493062326326, 16.289111463765337, 9.509765622208533, 33.244192265069245, 5.764334604220562, 72.3414763416263, 75.78312862499527, 60.53500852694156, 52.884719526756626, 62.53192187786475, 10.835407707744878, 97.37224177232795, 5.587882582013758, 16.978575451668018, 5.188341423173752, 13.73272074845735, 30.649106467045243, 26.509872652375208, 15.564709305440937, 5.112054566150247, 22.597063904080855, 13.344300217020606, 39.73390655018002, 50.03261569574147, 5.308294968073635, 103.46667223263732, 22.59918859612842, 265.03984223635916, 23.66899043944071, 21.26813837806509, 91.51689175180886, 14.66928955834212, 68.30731259567875, 21.72331653780976, 24.90352629112855, 58.978365149171324, 62.80821507837001, 53.64325430368406, 63.61035534300964, 13.944681076243139, 5.754513682529026, 5.588704055910953, 77.53051843021505, 43.51246957967126, 9.270245764714335, 27.98586222381087, 12.12593076422102, 47.312139015848274, 30.089331560237184, 26.725669937762568, 20.391047267648847, 11.41948925304226, 6.2024829180719045, 10.773024755718481, 15.832651422814905, 23.564209979229464, 179.30140315484218, 71.07382751332898, 8.441488341221898, 36.18086450837082, 104.85668151535859, 14.576532161058678, 13.436815499489896, 68.63784843314605, 6.895342031582248, 30.178530856902505, 122.74496117877108, 135.7335902433857, 121.54181678458625, 14.579859640977055, 8.361517648870857, 53.33574917393844, 11.500230320909024, 14.116228918453485, 6.77839417132933, 10.103863536051133, 5.442502384948822, 7.162282373461346, 15.587251312636582, 17.300351069270427, 84.11220041097215, 6.893337194963136, 31.95089960588544, 56.13069532259837, 5.770319349817537, 43.69414277179726, 21.49075283590077, 54.826112331986636, 21.778513520837777, 10.402171311070008, 16.38034584160181, 18.621639696087023, 12.726709620672533, 19.013373741771296, 52.318189749944366, 123.17813835446367, 53.99378942900426, 9.595751451836911, 11.848478812159211, 26.07101318021471, 84.08518154030753, 40.146419661315875, 13.61312536856117, 32.97268822703266, 7.570464783616529, 8.69501982189049, 89.314000420428, 14.09208718057394, 30.411766002901782, 13.170844227839904, 32.96221906237601, 6.87319865547961, 79.98302474615441, 13.599733842737848, 10.616690442289922, 38.527375804850216, 13.53935320738842, 27.957144478963688, 23.95761287493152, 30.19166102098964, 31.4064534319466, 41.525760029964616, 61.12297087207409, 61.21426805329824, 8.984246877910179, 33.32558656753421, 54.95767254479306, 7.077889934123811, 5.680148371823294, 90.29253492964637, 51.20351082746254, 12.424500259504489, 9.133210090570948, 29.55971145379076, 10.568572703354553, 30.054720060707176, 47.64231052626945, 8.552176169469783, 14.61733059443425, 65.08381456194853, 15.476088206859503, 59.3334189946835, 84.03254302194358, 49.9454183000932, 7.166673551421309, 6.609489122865574, 8.671951999915334, 27.863747970853375, 130.021587195785, 30.7369469418425, 25.007667537788492, 27.981249230669444, 22.324573021518418, 94.24116824476512, 12.580482817782373, 15.16352974251975, 5.537044672425629, 94.81592939422895, 87.9006844117703, 32.71593026982859, 13.21069649401854, 25.39413631089287, 26.058779067805528, 55.60415451938852, 47.865938785636494, 37.69107238354359, 72.83153791554193, 57.73570928648633, 11.63194725696997, 121.35686317943708, 10.630181763935266, 26.55817015686209, 34.9947045923375, 5.929674432610857, 27.214461135918967, 68.89026816802973, 89.30380842683871, 9.357009794058156, 6.955682036375023, 8.190759706700334, 18.530146337062362, 42.94605501499787, 44.88268362285402, 76.37413707193372, 23.603832280662836, 17.894188387062684, 5.807556924747042, 61.86256266459077, 8.529407819476953, 12.394105567626415, 11.15661777770811, 56.205985397952524, 5.971262015798721, 27.38879364581995, 106.00786888545379, 59.0849088638757, 7.295734174455219, 31.505511747536833, 67.0105368027872, 18.74006558078985, 18.332876761652837, 10.896746233480341, 8.412690081320465, 46.69394989355031, 95.57215056319636, 90.34379952600528, 37.35529319392587, 11.265343695213033, 12.81897114261447, 15.354721641694143, 5.319401819143447, 27.67137742535006, 6.8455487365407555, 32.69445834755899, 43.23839214993987, 13.29905626391165, 62.29704518349993, 93.20721574322836, 16.200744112453485, 11.26575092901007, 7.93719642676315, 23.69094870480677, 18.564074028980787, 40.311975636114994, 27.29625979597084, 43.80168716200622, 88.42655472104587, 6.763202198207054, 52.758312440611675, 14.378666769669698, 88.03716974606641, 84.57150606674774, 25.542179450503152, 43.919016051278554, 83.1060288834774, 17.027147341075175, 29.7559372918148, 11.319650404002074, 6.547343569456466, 128.83533736917562, 46.46278156949296, 70.27498652476649, 6.389502895352621, 40.86835052193478, 14.8284633710809, 118.84956892769699, 41.12044107073417, 31.261445611398518, 52.15671511625983, 53.70998292573853, 56.719590394445056, 12.00980364835436, 21.734014532138488, 22.79819805253976, 22.701703832111072, 92.14338268615485, 73.99262291796006, 6.333033493360074, 17.676429755894507, 80.65962728536108, 24.879113824319045, 50.847437302681406, 57.942307877289004, 57.27265394877479, 49.622443924720315, 84.33232755686558, 18.48856124905642, 8.601291385732777, 7.190548619899226, 12.33158915225432, 51.56718258639441, 47.390314699875105, 99.21427351750633, 11.164162874058182, 30.07654798908753, 104.66626640594802, 9.990529502445117, 78.58243243063721, 23.704952815875693, 22.31554130391772, 60.905263863005686, 14.348203174204148, 64.6982629338758, 27.59807729980922, 24.486034506663188, 19.754533910824104, 5.217289483378933, 35.06507792897401, 20.718081046684198, 29.775718616093698, 31.142254148615024, 56.62178556153489, 29.010011810324833, 16.99676101974191, 56.99349206638554, 10.886533746010121, 22.173093958970306, 9.759823686484955, 8.989604842289774, 5.800494221644793, 17.64473120976763, 13.36878534336758, 19.8651793466451, 5.355832660999328, 6.535296062119492, 75.16414812394343, 55.16277612803221, 57.048090612404664, 5.75991974059875, 46.041858157913154, 15.28887847706092, 59.355527709409294, 45.39101553241628, 26.099738482364305, 9.399235603944009, 109.56877110787002, 5.8805541686288825, 63.079175837381406, 99.75597857089531, 52.69918870876125, 97.93371699159995, 25.75578547713128, 15.535097801573288, 13.62876144950412, 10.149533635903106, 15.13042407901797, 37.78950183830039, 9.691195528695483, 27.039253287722865, 85.99109875500454, 65.70062423925287, 61.42330733568011, 55.282689555696194, 9.537008176615776, 71.21710192918353, 67.99180010476204, 54.86537508911603, 11.017241193404711, 126.69312946088063, 25.913087614285487, 29.769818670638713, 56.91097356278649, 12.726102551958261, 8.302146013417028, 62.62269104070843, 14.488682602936677, 6.678139639056464, 22.658350472246802, 45.92764541826167, 71.14884520840083, 22.361832162276887, 5.867605863570983, 18.501939129542205, 56.38032037745799, 20.32955801336058, 6.136535798892145, 9.394677418570522, 7.091000470431717, 23.63083754309499, 108.89988928967315, 48.60014930853202, 12.79452220700954, 73.06853602057748, 42.06474668304497, 8.498579219596431, 45.10234844639481, 12.426628048889818, 19.09117357514445, 18.365071625222964, 147.35144425028133, 13.755651832302375, 63.72816281362408, 138.72055630980088, 58.93658703513835, 28.441626150153606, 111.29822917704087, 70.52228631295908, 5.217071952704022, 51.59476773878694, 19.430871064579126, 38.96003795491185, 6.237496892713679, 5.552088427195318, 26.872457360145688, 23.136784323371348, 9.38461718051293, 104.03551642236232, 35.44474748588613, 126.4020557486123, 26.32113480870318, 6.892418103372839, 53.37382774682889, 111.77912434385857, 114.99147470967083, 26.46139025523611, 120.15064517357368, 33.593130148659085, 23.353274367864444, 63.506418841313504, 10.061006430859049, 40.008592097639415, 56.5168763211253, 64.29991518193688, 10.3723754665279, 102.71502875781972, 51.60521051574281, 23.770660168512066, 18.490368318499254, 38.11277837116099, 21.3310562456867, 10.250256173243828, 55.1192075640511, 123.64405501121523, 88.01982089336542, 150.4710656556333, 25.045995169220117, 89.24867170558954, 7.360442556269, 65.67343536575191, 5.227836155374361, 48.076866952291105, 35.28821224047104, 9.674495744469981, 17.847142086971246, 61.41666824246701, 7.9106699021697136, 5.721580024678274, 10.87198837737728, 29.196385366961493, 68.00829785408303, 10.270477381082966, 18.2367226625431, 147.47344521305874, 16.092043641270454, 7.41370583684004, 76.97954562713679, 27.198344694513878, 8.749398368176177, 83.93711473868954, 85.40345059012203, 48.182378474313715, 162.2061085568727, 6.718492675410379, 17.794671944134006, 27.572312526194416, 25.092281770381604, 5.206114101345783, 20.643756912073805, 72.62133377042623, 133.28517007903903, ...])
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)